html – 在css中使用自动边距,但需要最小边距

前端之家收集整理的这篇文章主要介绍了html – 在css中使用自动边距,但需要最小边距前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经检查了 Using a percentage margin in CSS but want a minimum margin in pixels?.它在使用百分比时如何实现最低限度.但我正在使用
width:80%;
margin:5px auto;

如何设置左侧的最小边距.我按照Reducing the space equally when resizing browser window使用了汽车保证金

谢谢

解决方法

如果我看到你的代码问题可能是你可以这样写:
div{
 margin:5px 10% 5px 5%;
}

检查这个更多http://jsfiddle.net/spVNu/1/

原文链接:https://www.f2er.com/html/229601.html

猜你在找的HTML相关文章