黑马程序员技术交流社区

标题: 【石家庄校区】第2章 CSS篇 [打印本页]

作者: 玩玩    时间: 2017-11-19 15:04
标题: 【石家庄校区】第2章 CSS篇
本帖最后由 小石姐姐 于 2017-11-20 15:04 编辑

第2章 CSS篇* span:跨度* margin:页边的空白; 极限; 边缘* padding:垫充, 填料, 垫塞* bottom:底部,下端* content:内容* link:链接* visit:访问* hover:* block:积木常用标签HTML的块标签table和div的区别CSS的概述CSS的基本语法
```
h1{    color:red;    font-size:14px;}
```
CSS的引入方式<h1 style="color:red;font-size:200px;">标题1</h1>
```
<style>    h1{        color:blue;        font-size: 40px;    }</style>`
```
```
<link href="../../css/demo1.css" rel="stylesheet" type="text/css" />
```
CSS的选择器* 选择器的优先级    * ID选择器>类选择器>标签选择器
```
div{    border:1px solid blue;    width:40px;    height:45px;}
```
```
#d1{    border:1px solid blue;    width:40px;    height:45px;}
```
```
.h-100{    float:left;}
```
CSS的复合选择器
```
<style>    input[type="text"]{        background-color: red;    }</style>
```
```
h1 strong{   color:red;}        <h1>            This is <strong>very</strong> <strong>very</strong> important.        </h1>        <h1>This is             <strong>very</strong>            <em>really                 <strong>very</strong>            </em>                 important.        </h1>
```
```
h1 > strong{   color:red;}        <h1>            This is <strong>very</strong> <strong>very</strong> important.        </h1>        <h1>This is             <strong>very</strong>            <em>really                 <strong>very</strong>            </em>                 important.        </h1>
```
CSS的浮动
```
/*清除浮动样式*/.clearfix:before,.clearfix:after {content: "";display: table;}.clearfix:after {clear: both;}.clearfix {*zoom: 1;}
```
CSS中的继承问题
```
* div居中:`margin:0 auto`* 百分比和px的计算 calc(30% - 2px);注意事项:减号的两边必须有空格
````
CSS中的盒子模型CSS中的定位
```
<body>    <!--需求:里面的小盒子定位是absolute,想要根据外面div的盒子设置左右距离-->    <div style="width: 500px;height: 500px;background-color:aqua;margin-left: 30px;position:relative"> <!-- 父元素相对定位 -->        <div style="width: 100px;height: 100px;background-color: red;position:absolute;top:0;left:0"><!-- 子元素绝对定位 -->        </div>    </div></body><body>    <div style="height: 200px;width: 100px; background-color: #000000;position:fixed;right: 0;top:30px;"></div></body>
```
超链接的伪类CSS的样式总结





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2