gpt4 book ai didi

html - 如何使用 css,html 在 wordpress 的图像(链接)上叠加文本

转载 作者:行者123 更新时间:2023-11-28 02:40:53 40 4
gpt4 key购买 nike

我正在用 wordpress 制作我的购物网站。现在我正在制作首页。我想在链接到产品详细信息页面(或我想要的任何其他页面)的页面上放置一些图像。

主要问题是...我想在图像上叠加一些与图像一样响应的文本。我找到了很多关于文本图像叠加的答案。但是,这没有帮助,因为我需要在“链接”图像上添加一些文本,并且我想让整个图像区域都可以点击,包括添加的文本。

当然,每个解决方案都应该是响应式的。

下面的例子正是我想要的: http://www.glasses.com/

enter image description here

最佳答案

针对您的问题的一个非常干净的解决方案,具有 4 种文本叠加定位。

<div class="module top">
<h2>Skyscrapers</h2>
</div>

<div class="module mid">
<h2>Skyscrapers</h2>
</div>

<br style="clear: both;">

<div class="module cap">
<p>Skyscraper are really neat and stuff because they are tall.</p>
</div>

<div class="module lr">
<p>Skyscrapers sometimes have nicknames like jim or shim.</p>
</div>

CSS

@import url(https://fonts.googleapis.com/css?family=Roboto:400,900);

.module {
background:
linear-gradient(
rgba(0, 0, 0, 0.6),
rgba(0, 0, 0, 0.6)
),
url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/3/skyscrapers.jpg);
background-size: cover;
width: 300px;
height: 200px;
margin: 10px 0 0 10px;
position: relative;
float: left;
}
.module:hover{
background: rgba(1,222,123,0.3);
}
.top h2 {
color: white;
margin: 0;
padding: 20px;
}

.lr p {
font-family: 'Roboto', sans-serif;
position: absolute;
bottom: 20px;
left: 20px;
color: white;
margin: 0;
}

.mid h2 {
font-family: 'Roboto', sans-serif;
font-weight: 900;
color: white;
text-transform: uppercase;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
font-size: 2rem;
transform: translate(-50%, -50%);
}

.cap p {
padding: 20px;
color: white;
font: 12px Monaco, Mono-Space;
margin: 0;
}

关于html - 如何使用 css,html 在 wordpress 的图像(链接)上叠加文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44606461/

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