gpt4 book ai didi

html - 如何将 img 和文本放在这样的 div 框中?

转载 作者:太空宇宙 更新时间:2023-11-03 21:57:01 26 4
gpt4 key购买 nike

我有一个如下所示的 div 框:

.productholder
{
width: 954px;
margin-left: 175px;
margin-bottom: 30px;
background-color: white;
border-style:solid;
border-width: 1px;
border-color: #d2d2d2;

/* gradients */
background: -webkit-gradient(linear, left top, left bottom,
color-stop(0%, white), color-stop(50%, white), color-stop(170%, #f6f6f6));
background: -moz-linear-gradient(top, white 0%, white 55%, #f6f6f6 150%);
}

我正在尝试获取文本和 img 的结构,就像这个示例图片一样:

Divbox

但我似乎无法完全像图片一样,任何帮助我如何让我的盒子看起来像这张示例图片的帮助都将不胜感激。

到目前为止我已经试过了:

<div class="productholder">  
<img src="url" alt="" />
<h2>Titletext</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer mi. Vivamu. etc</p>
<input type="submit" value="More">
<p>$599</p>
<input type="submit" value="Buy">
</div>

img{
float:left;
}

h2{
float:left;
font-size: 14px;
}

感谢任何形式的帮助!

最佳答案

这是一个想法 - DEMO

HTML

<div class="productholder">  
<img src="http://lorempixel.com/100/100" alt="" />

<div class="productinfo">
<h2>Titletext</h2>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer mi. Vivamu. etc</p>
<input type="submit" value="More">
</div>

<div class="productprice">
<h2>$599</h2>
<input type="submit" value="Buy">
</div>
</div>​

CSS

.productholder {
width: 954px;
margin-bottom: 30px;
background-color: white;
border-style:solid;
border-width: 1px;
border-color: #d2d2d2;

/* gradients */
background: -webkit-gradient(linear, left top, left bottom,
color-stop(0%, white), color-stop(50%, white), color-stop(170%, #f6f6f6));
background: -moz-linear-gradient(top, white 0%, white 55%, #f6f6f6 150%);
}

.productholder img {
display: inline-block;
margin: 20px;
}

.productinfo {
border: 1px solid #ccc;
display: inline-block;
margin: 20px 0;
vertical-align: top;
width: 500px;
}

.productinfo input {
float: right;
margin-top: 20px;
}

.productprice {
border: 1px solid #ccc;
width: 150px;
float: right;
margin: 20px;
text-align: center;
}

关于html - 如何将 img 和文本放在这样的 div 框中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13131300/

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