0、样式引入
<!--引入外部样式-->
<style>
@import "../css/boxs.css";
</style>
<!--or-->
<link rel="stylesheet" href="../css/boxs.css" type="text/css">
1、左右模块浮动:
<div style = "float:left;">
123
</div>
<div style = "float:right;">
456
</div>
2、设置边距——margin:
margin:10px 5px 15px 20px;
3、底部绝对定位
<footer style="position: absolute;bottom: 0px">
<p>青岛大学 QingDao University 数据科学与软件工程学院 School of Data Science and Software Engineering ©版权所有</p>
<address>山东省青岛市崂山区香港东路 7 号 ( 266071 )</address>
</footer>
4、CSS选择器
body{
color:red;
}
#id_One{
color:red;
}
.class_One{
color:red;
}