码迷,mamicode.com
首页 > Web开发 > 详细

CSS描述了网页的布局

时间:2017-07-29 22:22:37      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:浏览器   注释   margin   指定   border   样式   ott   order   括号   

1.CSS格式

CSS 规则由两个主要的部分构成:选择器,以及一条或多条声明;CSS声明总是以分号(;)结束,声明组以大括号({})括起来:

.style{color:red;text-align:center;}

2.CSS 注释:/**/

3.CSS 选择器
HTML元素以id属性来设置id选择器,CSS 中 id 选择器以 "#" 来定义

#terminal
{
text-align:center;
color:red;
}

class 选择器在HTML中以class属性表示, 在 CSS 中,类选择器以一个点"."号显示

.center {text-align:center;}

指定特定的HTML元素使用class

p {text-align:center;}


4.CSS 创建
插入样式表的方法有三种:内联样式)Inline style > (内部样式)Internal style sheet >(外部样式)External style sheet > 浏览器默认样式

外部样式表(External style sheet)

<head>
<link rel="stylesheet" href="../css/box.css">
</head>

内部样式表(Internal style sheet)

<head>
<style>
.bigBox{overflow:hidden;left: 0px; right: 0px;width: 100%;}
.LeftBox { float: left;width: 63%; height:98%; margin-top:1%;margin-bottom:1%;margin-left:1%;margin-right:1%;}
.RightBox { float: left;width: 33%; height:98%; margin-top:1%;margin-bottom:1%;margin-left:1%;margin-right:1%;}
.box {
position: relative; 
background: #003; 
border-top: 1px solid #d2d6de;
border-top-color: #383838; 
}
</style>
</head>

内联样式(Inline style)

<div id="full" class="bigBox" style="height:1000px;">

 

CSS描述了网页的布局

标签:浏览器   注释   margin   指定   border   样式   ott   order   括号   

原文地址:http://www.cnblogs.com/corolcorona/p/7257610.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!