css float:left;margin-right:10px排版

html-css018

css float:left;margin-right:10px排版,第1张

可以使用 letter-spacing:*px来控制文字间距,*px是指间距像素

这个不仅可以用在li里,其它需要文字排版的地方都可以使用

举个例子:

.list li {width:200pxtext-align:centerheight:22pxline-height:22pxletter-spacing:5pxoverflow:hiddenclear:both}

说明.list li {li宽度200px 文字居中 li高度22px 行高22px 字间距5px 超出部份隐藏 清除}

clear:right这是解决你问题的答案,加在float:right中

不建议采用一楼的做法,绝对定位用于细节处理很便利,但并不常用于布局

仍有疑问,追问吧