html 3

2020-12-13 03:08

阅读:271

标签:style   blog   class   code   java   c   

soscw.com,搜素材
div{}

#id{

}

.class_name{

}
soscw.com,搜素材

 

CSS引入方式

1. 写在标签内部的 style=" " 属性里

2. 写在

部分中的

3. 写在

4. 在中使用 @import url(**.css); 导入 CSS 别烧了分号!!!!!

 

元素标签 并排在一行 使用 float CSS 属性  

soscw.com,搜素材
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
head>
    meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    title>Documenttitle>
    style>
        #header{
            height:200px;
            background:blue;
            color:white;
            float:left;
        }
        #content{
            height:200px;
            background:green;
            color:white;
            float:left;
        }
        #footer{
            height:200px;
            background:grey;
        }
    style>
head>
body>
        div id="header">Headerdiv>
        div id="content">Contentdiv>
        div id="footer">Footerdiv>
body>
html>
soscw.com,搜素材

 

 

html 3,搜素材,soscw.com

html 3

标签:style   blog   class   code   java   c   

原文地址:http://www.cnblogs.com/zy2012/p/3724340.html


评论


亲,登录后才可以留言!