Dreamweaver Centring a web page
Hi I have created a web page and want to know how to centre it on a page. Can anyone help please.
Thanks
Geoff
Hi I have created a web page and want to know how to centre it on a page. Can anyone help please.
Thanks
Geoff
BOOTSTRAP 3 (Floats)
use the center-block class and add this to your custom CSS file. .center-block {float none}
<div class="container">
<div class="row">
<div class=col-sm-8 center-block">
This div is centered.
</div>
</div>
</div>
BOOTSTRAP 4 (Flexbox)
use the mx-auto class.
<div class="container">
<div class="row">
<div class="col-sm-8 mx-auto">
This div is centered.
</div>
</div>
</div>
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.