作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我制作了一个内径为 13 毫米、屏幕分辨率为 1280X800 的戒指,不幸的是,当屏幕分辨率改变时,戒指的内径也在改变。有没有办法为所有屏幕尺寸和分辨率固定圆环内径尺寸。
.ring {
display: flex;
justify-content: center;
/* align horizontal */
align-items: center;
/* align vertical */
text-align: center;
line-height: 100px;
}
.black_circle {
border: 5px solid;
width: 50px;
height: 50px;
border-radius: 100%;
}
<div class="ring">
<div class="black_circle"></div>
</div>
最佳答案
为什么不直接使用 13mm
而不是 50px
。这是允许的。
Pixels (px) are referred to as absolute units because they will always be the same size regardless of any other related settings. Other absolute units are as follows:
q, mm, cm, in: Quarter millimeters, millimeters, centimeters, or inches
pt, pc: Points (1/72 of an inch) or picas (12 points)
You probably won't use any of these very often except pixels.
关于css - 有没有办法在 html 中为所有屏幕尺寸和分辨率固定圆环内径尺寸,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57000325/
我是一名优秀的程序员,十分优秀!