gpt4 book ai didi

html - 如何组成这样的布局?

转载 作者:太空狗 更新时间:2023-10-29 14:15:08 24 4
gpt4 key购买 nike

此处的第一张图片是由网页设计师创建的草稿。

此处的第二张图片是我为此创建适当的 HTML/CSS 布局的结果。

问题是:我如何仅使用适当的 HTML5 和 CSS 在评级药丸周围创建这个透明字段。解决方案必须是跨浏览器和 super 兼容的(包括 IE7 和更高版本)。

rating pill 的宽度不固定,它取决于里面的数字,所以透明字段必须反射(reflect)这一点。

这是我当前的布局:

<div class="evo-module-c4b style="background-image: url('/i/oranges.jpg');">

<div class="price">
<span class="icon"></span>
<span class="value">10,950</span>
</div>

<div class="die"></div>

<div class="rating-wrapper">
<div class="evo-rating">
<span class="value">+100500</span>
</div>
</div>

<div class="content">
<h2>Lorem ipsum dolor</h2>
<p class="author">Donec et</p>
<p class="data">24.08.2012 10:53</p>
<h3>Nunc pellentesque justo diam, sed dictum dolor.</h3>
</div>

</div>

减少:

div.evo-module-c4b {
position: relative;
width: @module-big-width;
height: 250px;
background-color: @color-gray-1;
background-position: 0 0;
background-repeat: no-repeat;
overflow: hidden;

div.price {
position: absolute;
top: 18px;
right: 24px;
span.icon {
display: block;
float: left;
width: 16px;
height: 16px;
background-image: url('/i/evo/icons-imageset.png');
background-position: -20px 0;
background-repeat: no-repeat;
}
span.value {
display: block;
float: left;
margin-left: 4px;
font-size: 18px;
font-weight: bold;
color: @color-white;
}
}

div.die {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 108px;
background-color: @color-gray-10;
//background-image: url('/i/evo/modules/c4b/die.png');
background-position: 0 0;
background-repeat: no-repeat;
z-index: 0;
}

div.rating-wrapper {
position: absolute;
width: 100%;
top: 122px;
text-align: center;
div.evo-rating {
display: inline-block;
}
}

div.content {
position: absolute;
left: 0;
top: 172px;
width: 100%;
z-index: 1;

h2, h3, p {
margin: 0;
padding: 0;
line-height: normal;
text-align: center;
}

h2 {
font-size: 18px;
font-weight: bold;
}

p.author {
font-size: 12px;
font-weight: bold;
}

p.data {
font-size: 10px;
color: @color-gray-4;
}

h3 {
font-size: 12px;
color: @color-gray-4;
}
}
}

div.evo-rating {
span.value {
.evo-border-radius(@rating-height / 2 + 3px);
display: block;
height: @rating-height;
font-size: 18px;
font-weight: bold;
line-height: @rating-height;
color: @color-major;
background-color: @color-white;
border: 3px solid @color-major;
padding: 0 5px;
}
}

有什么建议吗? )

最佳答案

更改带有 alpha 孔的图像的灰色背景,并将其添加到图片上。您可能需要不同的尺寸,因为宽度可能会发生变化。

关于html - 如何组成这样的布局?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12109611/

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