摘要:
clear clear:right; 左侧不允许有浮动元素 clear:left; 右侧不允许有浮动元素 clear:both; 两侧不允许有浮动元素 clear:none; 解决方案 1.增加父级元素的高度 #father{ border:1px solid #000; height:800px; 阅读全文
posted @ 2021-08-29 16:54
cengxuyuan
阅读(183)
评论(0)
推荐(0)
摘要:
display block 块元素 inline 行内元素 inline-block 是块元素,但是可以内联,在一行! none div{ width:100px; height:100px; border:1px solid red; display:inline; } span{ width:1 阅读全文
posted @ 2021-08-29 16:05
cengxuyuan
阅读(41)
评论(0)
推荐(0)