CSS Combinators

Size
1,957 Kb
Views
16,192

How do I make an css combinators?

Example of CSS combinators. What is a css combinators? How do you make a css combinators? This script and codes were developed by Anthony Albertorio on 24 September 2022, Saturday.

CSS Combinators Previews

CSS Combinators - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>CSS Combinators</title> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div class="main"> <h1>Combinators</h1> <a href="#">A direct child of .main</a> <p> In sit amet consequat dolor. Fusce tempor odio vitae sem elementum, luctus luctus purus iaculis. Morbi mattis turpis nec orci tempus dictum. </p> <h2>I am a Heading 2</h2> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis egestas dapibus tristique. Nunc pharetra lacus a leo luctus pulvinar. <a href="#">Not a direct child of .main</a>. </p> <a href="#">A direct child of .main</a> <h2>I am a Heading 2</h2> <p> Aenean quis tellus vel dui viverra tempor. In sit amet consequat dolor. Fusce tempor odio vitae sem elementum, luctus luctus purus iaculis. Morbi mattis turpis nec orci. </p> <p> Nulla rutrum eleifend mi nec rutrum. Ut ornare diam dapibus, egestas elit aucto elit quis felis. <a href="#">Not a direct child of .main</a> </p>
</div>
</body>
</html>

CSS Combinators - Script Codes CSS Codes

body {	padding-top: 35px;	font: 1.1em/1.5 sans-serif;
}
.main {	margin: auto;	padding: 10px 20px 20px;	width: 760px;	border: 1px solid;
}
/* Using Combinators */
/* Direct Child Combinator
styles direct child only*/
.main > a { color: red;
}
/* Adjacent Sibling Combinator
styles sibling immeditely follow first selector
*/
h2 + p { color: white; padding: 10px; background-color: royalblue;
}
/* General Sibling Combinator
used to target other sibling, every y selector following x*/
h2 ~ p { color: white; padding: 10px; background-color: royalblue;
}
CSS Combinators - Script Codes
CSS Combinators - Script Codes
Home Page Home
Developer Anthony Albertorio
Username tesla809
Uploaded September 24, 2022
Rating 3
Size 1,957 Kb
Views 16,192
Do you need developer help for CSS Combinators?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Anthony Albertorio (tesla809) Script Codes
Create amazing Facebook ads with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!