Code
Execute
<!DOCTYPE html> <html> <head> <style type="text/css"> .box { display: inline-block; width: 200px; height: 100px; border: 3px solid #0C7BC2; } .after-box { border: 3px solid #0C7BC2; } </style> </head> <body> <div class="box">Wikitechy</div> <div class="box">Wikitechy</div> <div class="after-box">If we are using float property we have to assign clear attribute</div> </body> </html>
Result