LoginSignup
7
7

More than 5 years have passed since last update.

floatしたときの親要素の高さを復活させる方法(clearfix)

Last updated at Posted at 2014-04-02

style.css
#child1 {
    fload: left;
}
#child2 {
    fload: right;
}

.clearfix {
    zoom: 1;
}
.clearfix:after {
    content: ".";
    display: block;
    clear:both;
    visibility: hidden;
}
index.html
<div class="clearfix">
    <p id="child1">子要素1</p>
    <p id="child2">子要素2</p>
</div>
7
7
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
7
7