问答详情
源自:1-1 代码初体验,制作我的第一个网页

如何添加背景颜色?在那里添加?具体添加什么内容求大神指点

如何添加背景呢?


提问者:锐利粑粑 2016-04-26 10:44

个回答

  • 慕粉2870488
    2016-04-26 10:50:48
    已采纳

    <body style=" background-color:#666;"> .... </body>

    对整个body添加背景色

    <h1 style=" background-color:#666;"> ....</h1>
    <h2 style=" background-color:#333;"> ....</h2>

    分别对h1和h2添加背景色。这是行内样式的

    <html>
        <head>
            <style type="text/css">
                body{background-color:#666;}
                h1{background-color:#666;}
                h2{background-color:#666;}
            </style>
        </head>
        <body>
            .....
        </body>
    </html>

    嵌入式的添加样式。还有一种是外部样式表的引用。

    优先级  行内样式>嵌入式样式>外部样式表

  • 且听风吟cy
    2016-04-26 11:00:09

    <body style=" background-color:#666;"> .... </body>         background是背景色的意思  后面可选择颜色

  • 黝黑的IT纯小白
    2016-04-26 10:53:12

    小白一枚,刚把html+css过了一边,不知道哪里有适合的网页模版模仿一下下练练手,

  • 2016-04-26 10:50:32

    在css样式中添加,好像是bacolor