设置div p{text-indent:2em}这样每个p断落的首行缩进2单位。
如果楼主在div内使用编辑软件进行的/enter换行在页面当中并不认为是换行,希望楼主理解。
表格的缩进只能用空表格占位!比如:<table
width="450"
border="0"
cellspacing="0"
cellpadding="0">
<tr>
<td></td>
<td>我的左右都有空隙</td>
<td></td>
</tr>
</table>
div的间隙如上位仁兄已经说了,可以用margin和padding两个属性,它们各有上下左右
padding-top:10px
padding-bottom:10px
padding-left:10px
padding-right:10px
margin-top:10px
margin-bottom:10px
margin-left:10px
margin-right:10px
如果要想让两个块排在一行可以用float属性
如:<style>
.aa
{width:300px}
.cc{padding:6pxcolor:#ff0000height:100pxwidth:100pxfloat:left}.bb{margin:10pxcolor:#000000width:100pxheight:100pxfloat:right}
</style>
<div
class="aa"><div
class="bb">22222222</div><div
class="cc">33333333</div></div>
div层里面文字的首行缩 用text-indent: 2em这个就行。你知道的,第二行没有缩进因为哪个不是一段的起始行。设置文字上下间的距离 给他一个行高就行了。line-height:20px欢迎分享,转载请注明来源:内存溢出
评论列表(0条)