0

我有一个看起来像这样的 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 的结构,例如此示例图片:

分箱

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

到目前为止,我已经尝试过:

<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;
}

任何形式的帮助表示赞赏!

4

3 回答 3

4

这是一个想法 - 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;
}
​
于 2012-10-29T23:59:47.700 回答
0

对于图像,h2 和第一个 p 执行此操作

.productholder{
width: 734px;
padding-left: 220px;
}
.productholder img{
float:left;
margin: 10px;
max-width: 200px;
}

然后给出第二个 pa 类名称,并用margin-right:10px; And 作为输入向右浮动:

input{
position: absolute;
bottom: 5px;
right: 10px;
}

这是一个粗略的草图,但它应该是正确的..

于 2012-10-29T23:57:45.597 回答
0

使用简单的编码:

HTML:

<div class="wrapper">

    <div class="box-one">dfgdfg</div>
    <div class="box-two">dfgdfgdfgdfg</div>
    <div class="box-three">dfgdfgdfgdfg</div>
    <div class="clear"></div>

</div>

CSS:

.clear{
    clear:both;
}

.wrapper{
    width:450px;
    background:#A4A4A4;
}

.box-one{
    float:left;
    width:80px;
}

.box-two{
    float:left;
    width:300x;
}

.box-three{
    float:right;
    width:70px;
}

我把骷髅听到了。自定义css并使用它。欢呼.....

于 2012-11-01T17:15:01.943 回答