CSS基础
CSS概述
CSS是层叠样式表(cascading Style Sheets)的缩写,它用于定义HTML元素的显示形式,是W3C推出的格式化网页内容的技术标准。
页首、页中、页尾示例
1、header{
background-color:#cccccc;
height:100px;
}
div{
background-color:#eeeeee;
height:500px;
}
li{
float:left;
margin-leftL:10px
list-style:none;
}
footer{
background-color:#ae2311;
height:100px;
}
section{
height:500px
width:75%
background-color:#442211;
float:left;
margin-right:20px
}
aside{
height:100%
width:20%
background-color:#554666;
float:left;
}
生日下拉列表演示
<td>生 日:</td>
<td><input type="date" name="生日" required="required"></td>
</tr>
<tr><td><input type="submit" formnovalidate="false"></td>
<td><input type="submit" formaction="demo01.html"></td>
CSS概述
CSS是层叠样式表(cascading Style Sheets)的缩写,它用于定义HTML元素的显示形式,是W3C推出的格式化网页内容的技术标准。
页首、页中、页尾示例
1、header{
background-color:#cccccc;
height:100px;
}
div{
background-color:#eeeeee;
height:500px;
}
li{
float:left;
margin-leftL:10px
list-style:none;
}
footer{
background-color:#ae2311;
height:100px;
}
section{
height:500px
width:75%
background-color:#442211;
float:left;
margin-right:20px
}
aside{
height:100%
width:20%
background-color:#554666;
float:left;
}
生日下拉列表演示
<td>生 日:</td>
<td><input type="date" name="生日" required="required"></td>
</tr>
<tr><td><input type="submit" formnovalidate="false"></td>
<td><input type="submit" formaction="demo01.html"></td>