요소의 부동 소수점을 지우려면 .clearfix Bootstrap 클래스를 사용하십시오.
예시
요소의 부동 소수점을 지우기 위해 다음 코드를 실행할 수 있습니다.
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "clearfix" style = "background: orange;border: 1px solid #000; padding: 10px;"> <div class = "pull-left" style = "background: blue; color: white;"> left </div> <div class = "pull-right" style = "background: blue; color:white;"> right </div> </div> </body> </html>