CSS style Sheets

Source: Internet
Author: User
Tags tag name

1. Classification of Style sheets

1.1 Inline style sheet

Combined with HTML display, the control is accurate, but reusability is poor, redundancy is many.

<p style= "font-size:14px;" > Inline style Sheets </p>

1.2 Inline style Sheet

embedded in a Web page as a separate area must be written inside the head Tag.

1.3 External style Sheets

Create a new CSS file to place the style Sheet. If you call a style sheet in an HTML file, you need to right-click in the HTML file---css style----attach the style sheet. The link connection method is generally used.

<style type= "text/css" >

*//format works on all tags

{

margin:0px;

padding:0px;

}

</style>

2.1 Selector

1. Tag Selector. Use the tag name to make the Selector.

<style type= "text/css" >

P//format works on P tags

{

Style

}

</style>

2.class Selector. It's all "." Beginning.

3.ID Selector. Start with "#".

<div id= "style name" >

the ID represents unique and can only be used Once.

4. Composite Selector.

1), separated by ",", to indicate Juxtaposition.

2), separated by a space, indicates descendants

3), Filter ".".

3. Status of hyperlinks

CSS style Sheets

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.