我有以下html,我对以下内容非常困惑:
.rowNumber
&将.title
在所有三个盒子中保持相同的高度- 每列中的
.rowNumberItems
内容量不会相同
如何使用 CSS 等于列,以便我.button div
在所有列中都相等?
我的专栏是height:200px; by width:195px;
示例列:
<div id="priceTable">
<div class="rowOne">
<p class="title">Name</p>
<ul class="rowOneItems">
<li>Custom Design</li>
</ul>
<div class="button"><a href="#">Buy Now</a></div>
</div> <!-- Column One -->
</div>
当前的 CSS:
#priceTable{
width:780px;
height:230px;
margin:0 auto;
overflow:hidden;
background:gray;
}
.rowOne, .rowTwo, .rowThree{
float:left;
height:225px;
width:195px;
margin:0 40px 0 0;
background:red;
}
#priceTable .title{
font-weight:bold;
text-align:center;
color:#000;
}
#priceTable .button{
background:green;
background:url('../images/button.png') no-repeat;
}