I can understand coding:
body {
color: #ffffff;
text-align: center;
margin: 5px 0;
}
But I don't understand what is the following code meaning:
* { margin: 0; padding: 100; outline: 0; }
I can understand coding:
body {
color: #ffffff;
text-align: center;
margin: 5px 0;
}
But I don't understand what is the following code meaning:
* { margin: 0; padding: 100; outline: 0; }
This is the universal selector. It means everything (tag) takes the values in the braces.
div.ardav * {color: red;}
this will make every element inside the <div class="ardav"> red
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.