LoginSignup
0
0

More than 5 years have passed since last update.

横並びのリストタグの高さを揃える

Posted at

html

qiita.html
<ul class="inl_block">
    <li>
        1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番1番
    </li>
    <li>
        2番
    </li>
    <li>
        3番
    </li>
</ul>

css

qiita.css
ul.inl_block li {
  display: inline-block;
  width: 148px;
  vertical-align: top;
  margin: 0 20px 20px 0;
  padding: 20px;
  border: 1px solid #CCC;
}

/* IE6 */
ul.inl_block li {
  _display: inline;
  _zoom: 1;
}

/* IE7 */
*:first-child+html ul.inl_block li {
  display: inline;
  zoom: 1;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0