Skip to main content

Posts

Showing posts with the label div

css中的浮动(float)

 float元素的初心是为了图片的环绕样式,CSS可以设置元素(element)在容器(container)中的位置。 <div class="right">This will be placed in the right of the parent container.</div> .right  {    float: right ; }

使用div做分割线

 div是一种布局工具,可以通过更改margin,border,padding,定位,浮动等方式,对页面进行布局美化。 比如要做一个分割线,可以这样写: <div class="divider"></div> css中这样定义这个div的样式: .divider {               border-bottom: 1px solid #888989; }