Examples of CSS wildcard selectors

Source: Internet
Author: User

You want all elements to conform to one style, and you can use wildcard selectors. Wildcard selectors can be applied to all HTML elements, but with the lowest precedence.

Grammar:

*{

Property Name: property value;

.......

}

Cases:

HTML file:



<TITLE>CSS Wildcard Selector </title>
<link rel= "stylesheet" type= "Text/css" href= "Test.css"/>
<body>
<p class= "cls1" > Hello, China! </p>
<p class= "CLS2" >Hello,www.bianceng.cn!</p>
</body>

TEST.CSS content:

/*CSS Wildcard Selector * *
p.cls1{
Color:blue;
font-size:30px;
}
p.cls2{
color:red;
font-size:20px;
}
/* Wildcard Selector * *
*{
margin-top:10px;
margin-left:10px;
}

The effect of the following figure:

More Wonderful content: http://www.bianceng.cnhttp://www.bianceng.cn/web/Css/

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.