Maison >interface Web >tutoriel HTML >行内元素外边距的问题_html/css_WEB-ITnose
<div style="margin:10px;background:blue"> <span style="margin-top:20px;background:red;">aaaaaaaa</span></div>
margin-top
margin-bottom 对 行内元素 无效,可以使用 padding
你在 标签上再加个display:block;
margin就有效了
如:
<div style="margin:10px;background:blue"> <span style=" display:block;margin-top:20px;background:red;">aaaaaaaa</span></div>
好的谢谢二位!