gpt4 book ai didi

css - DIV 中的垂直文本对齐 - 响应式文本大小调整

转载 作者:行者123 更新时间:2023-11-28 09:36:58 25 4
gpt4 key购买 nike

我有一个 wordpress 网站,我想在 slider 图像上垂直 float 文本。

我使用以下 CSS 在我的 slider 小部件上硬编码了一个静态的全宽图像。

.slider-wide {
clear: both;
width: 100%;
height: 560px;
background: url(http://photourl);
background-position: center;
background-repeat: no-repeat;
background-size: cover;

}

现在开始提问。虽然文本在宽屏上看起来很漂亮,但当浏览器窗口缩小或从移动设备上查看时,文本会溢出 slider 图像并溢出到其他小部件中。

有没有办法将此文本仅锁定到 slider 小部件中?以某种方式响应文本大小?

最佳答案

是的,如果您使用视口(viewport)单位,您可以在文本上使用“响应式”文本大小。

这种单位支持的值之一是百分比值,它基于容器的宽度、高度或两者...这是该概念的示例:http://jsfiddle.net/t7b8ytrq/

{
font-size: 2vh; /* size based on container's height */
font-size: 2vw; /* size based on container's width */
font-size: 2vmin; /* size based on witchever is smaller (width or height) */
font-size: 2vmax; /* size based on witchever is higher (width or height) */
}

在此处阅读规范:http://dev.w3.org/csswg/css-values/#viewport-relative-lengths

关于css - DIV 中的垂直文本对齐 - 响应式文本大小调整,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25490034/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com