Blogger Information
Blog 39
fans 0
comment 0
visits 34906
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3月21日 作业
美丽城堡
Original
539 people have browsed it
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>css 样式表</title>
</head>
<style type="text/css">
    p{
        color: orange;
    }
    .where{
        background-color: #abcdef;
    }
    #chone{
        font-size: 22px;
    }
    div a{
        font-size: 24px;
    }
    p[class~="where"]{
        font-weight: 800;
    }
    a[href="#"]{
        background-color: cyan;
    }
    a[href^="http://"]{
        color: #1296db;
    }
    a[href$=".com"]{
        font-size: 40px;
    }
    p[class*="t"]{
        padding:20px;
    }
</style>
<body>
    <div>
        <a href="#">one</a>
        <a href="#">two</a>
        <a href="http://www.baidu.com">百度</a>
        <a href="http://www.php.cn">PHP 中文网</a>
    </div>
    <p>
        where are you now..
    </p>
    <p id="chong">
        重庆
    </p>
    <p class="where text">
        成都
    </p>
</body>
</html>

手写图片:

IMG_1573.JPG


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post