margin
text-indent
单位可以是px
em
%
(em是根据你设置的字体大小设定的,假如你设置字体为12px,那么2em就是24px。
%是根据父容器的宽度或高度决定的。
margin-left:automargin-right:auto(左右自动对齐)。position:absolute(绝对定位)
在css中设置字体和div的位置:在css中设置字体,一般情况下,我们都是通过font这个css属性来完成,font-family:"字体名字(如:微软雅黑)"还可以使用font-size对字体的大小做限制,如font-size:12px;
div的位置,我们首先需要知道你要将你的这个div固定的位置,也就是left和top,在使用position的定位来做就行,这里给出具体的代码:
<html>
<head>
<style>
.headr{
width:300px
height:200px
border:1px solid #f00
position:absoulte
left:100px //只是假定的值,具体需测量
top:200px
}
</head>
<body>
<div class="headr" > //页头
</div>
</body>
</html>
div 中的字体如何用CSS控制居下的方法:1、用margin-top 或者padding-top 设置。
代码:
<div class="text"></div>
.text {width:??pxheight:??pxmargin-top:10px} //这里用margin或padding 都行。
2、设置行高,line-height 属性
如:line-height:30px 数字越大行高越高 行与行的距离越大。
代码:
<div class="text"></div>
.text {width:??pxheight:??pxline-height:??px}