CSS usage examples

Source: Internet
Author: User

The existence of CSS is to separate the content of the Web page from the way content is displayed.

There are several ways to use CSS, and the most common is to use it by introducing an external CSS file.

Html

<!DOCTYPE HTML><HTML><HeadLang= "en">    <MetaCharSet= "UTF-8">    <title>Link external CSS Styles</title>    <Linkhref= "00_css use example. css"rel= "stylesheet"type= "Text/css" /></Head><Body><Table>    <TR>        <TD>Crazy Java Handouts</TD>    </TR>    <TR>        <TD>Lightweight Java EE Enterprise Development Combat</TD>    </TR>    <TR>        <TD>Crazy Ajax Handouts</TD>    </TR></Table></Body></HTML>

Css

/**/{    background-color: #003366;     Width: 400px;} /* set the background color, font, and so on for a cell */  {    background-color: #fff;     font-family: "_gb2312 in italics";     font-size: 20pt;     text-shadow: -8px 6px 2px #333;}

Other ways to use CSS style sheets

Import an external style sheet

<style type= "Text/css" >

@import "Outer.css";

@import url ("Mycss.css");

</style>

Using internal styles

<style type= "Text/css" >

Style definition

</style>

Using inline styles

Style= "

Style definition

"

CSS Summary

CSS learning is actually two pieces of content, 1 selector 2 style settings

All the rest is how to set the style, set the type of use

CSS usage examples

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.