Recent

6/recent/ticker-posts

CSS 5

CSS 5




CSS Elements and Properties

Universal Selector
Sometimes we want to define a rule that is applicable to all elements of a web page.
Universal Css selector Asterisk(*).

Example ↓↓↓↓↓↓

<html>
<head>
<title>My Page</title>
</head>
<body>
<p>This is the first Para</p>
<br>
<p>This is the Second Para</p>
<br>
<ul>
<li>sample</li>
<li>Sample 22</li>
</ul>
</body>
</html>

Css

*{
    font-size: 31;
    font-display: auto;
    font-family: cursive;   
}


Result 




Post a Comment

0 Comments