「CSS」floatプロパティのサンプル
環境
Google Chrome 103.0.5060.66(Official Build)
構文
float: left/right;
floatプロパティは、指定した対象を左に寄せます。
後続を反対側に回り込ませます。
float は CSS のプロパティで、要素を包含ブロックの左右どちらかの側に沿うように設置し、
テキストやインライン要素がその周りを回りこめるように定義します。
使用例
<!DOCTYPE html> <html> <head> <style> .cft { float: left; height: 70px;width: 200px; border: 2px solid #000; background-color: skyblue; text-align: center; } </style> </head> <body> <div class="cft">study</div> <p> skill</p> <p> become</p> </body> </html>