1.高度和宽度
.c1{
height:300px;
width:500px;
}
注意事项:
2.块级和行内标签
display:inline-block
<style>
.c1{
display:inline-block;
height:100px;
width:300px;
border:1px solid red;
}
style>
注意:主要用到块级、块级&行内。
3.字体
(颜色、大小、粗细、样式/、文字对齐方式等)
<style>
.c1{
color:#00FF7F;
font-size:58px;
font-weight;600;
font-family:Microsoft Yahei;
text-align:center; /*水平方向居中*/
line-height:59px; /*垂直方向居中*/
}
style>
4.浮动
<style>
.c1{
float:right;/*浮动到右边*/
}
style>
div默认块级标签(霸道),如果浮动起来,就不霸道了。
如果让标签浮动起来,就会脱离文档流。
解决方案:该标签父亲的内部最后加入->
5.内边距(自己内部设置边距)
<style>
.c1{
padding-top:20px;
padding-left:20px;
padding-right:20px;
padding-bottom:20px;
/*或者下面的写法:上 右 下 左*/
padding:20px 20px 20px 20px;
}
style>
6.外边距(我与别人的距离)
<style>
.c1{
margin-top:20px;
margin-left:20px;
margin-right:20px;
margin-bottom:20px;
/*或者下面的写法:上 右 下 左*/
margin:20px 20px 20px 20px;
}
style>
7.总结
body{ margin: 0; }
Jason
margin-left:auto;margin-right:auto
.counter{
width:980px;
margin:0 auto;
}
<div class="counter">Jasondiv>
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Titletitle>
<style>
body{
margin:0;
}
.header {
height: 38px;
background-color: #333;
}
.container{
width:1226px;
/*保证内容居中,如下:*/
margin:0 auto;
}
.header .menu{
float:left;
color:white;
}
.header .account{
float:right;
color:white;
}
.header a {
color:#b0b0b0;
line-height:40px;
display:inline-block;
font-size:12px;
margin-left:10px;
}
style>
head>
<body>
<div class="header">
<div class="container">
<div class="menu">
<a>小米商城a>
<a>MIUIa>
<a>LOTa>
<a>云服务a>
<a>天星数码a>
<a>有品a>
div>
<div class="account">
<a>登录a>
<a>注册a>
<a>消息通知a>
div>
<div style="clear:both">div>
div>
div>
body>
html>