问答详情
源自:7-2 为什么是css呢? - CSS样式的优势

我想用三个span来设置将三句话设为3种颜色

我想用三个span来设置将三句话设为3种颜色,用id选择器?怎么用的(书写格式是怎样的?)

提问者:一切哦克 2015-10-19 20:49

个回答

  • Perona
    2015-10-19 21:24:53
    已采纳

    没必要用id选择器,class选择器就可以了。

    参考代码

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>不同颜色</title>
    <style type="text/css">
    .red{color:red;}
    .blue{color:blue;}
    .yellow{color:yellow;}
    </style>
    </head>
    <body>
        <span class="red">我是红色</span>
        <span class="blue">我是蓝色</span>
        <span class="yellow">我是黄色色</span>
    </body>
    </html>

    相关知识点:http://www.imooc.com/code/1576