css避免文字环绕

编程入门 行业动态 更新时间:2024-10-17 22:18:00

css避免<a href=https://www.elefans.com/category/jswz/34/1769559.html style=文字环绕"/>

css避免文字环绕

问题

我们要的效果

    <div class="step4-firstItem"><div class="step4-firstCheck"><input type="checkbox" /></div><div class="step4-firstMain">制订的项目管理方案、各项服务项目补助经费参考标准、资金拨付方案、资金支出范围、资金管理制度不符合国家卫生计生委、财政部有关要求,共<input type="number"></div></div>
.step4-firstItem{}
.step4-firstCheck{float: left;width: 50px;
}
.step4-firstMain{float: left;
}

解决

BFC

    <div class="step4-firstItem clearfloat "><div class="step4-firstCheck"><input type="checkbox" /></div><div class="step4-firstMain">制订的项目管理方案、各项服务项目补助经费参考标准、资金拨付方案、资金支出范围、资金管理制度不符合国家卫生计生委、财政部有关要求,共<input type="number"></div></div>

clearfloat给父类添加清除浮动

.step4-firstItem{}
.step4-firstCheck{float: left;width: 50px;
}
.step4-firstMain{float: left;width: calc(100% - 22px);
}/*清除浮动代码*/
.clearfloat:after {display: block;clear: both;content: '';visibility: hidden;height: 0;
}
.clearfloat {zoom: 1;
}

方法二

给右侧那个加margin

更多推荐

css避免文字环绕

本文发布于:2024-02-07 02:37:49,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1752575.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:文字   css

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!