最好的方式来表示CSS的100%的1/3的1/3? [英] Best way to represent 1/3rd of 100% in CSS?

查看:87
本文介绍了最好的方式来表示CSS的100%的1/3的1/3?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个大的< div> 与三个小< div> 一致。它们各有33%的宽度,但是会导致一些对齐问题,因为3 * 33%!= 100%。什么是最好的方式来表示一个完美的第三在CSS这样?也许只有33.33%?

I have a big <div> with three little <div>'s inside of it, inline. They each have 33% width, but that causes some alignment problems because 3 * 33% != 100%. What is the best way to represent a perfect third in CSS like this? Maybe just 33.33%?

推荐答案

现在 calc =http://caniuse.com/calc>在现代浏览器中广泛支持,您可以使用:

Now that calc is widely supported among modern browsers, you can use:

#myDiv {
    width: calc(100%  /3);
}

或者,如果您的浏览器不支持:

Or you can use this as a fallback if your browser wouldn't support it:

#myDivWithFallback {
    width: 33.33%;
    width: calc(100% / 3);
}

这篇关于最好的方式来表示CSS的100%的1/3的1/3?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆