Note lại kẻo lại quên canh giữa thường là của paragraph
Code: Select all
<style>
.parCenter
{
text-align: center;
}<style>
Code: Select all
<p class="parCenter"> tthlan.info - canh giữa <p></p>
Cách 1 có hoặc không có width thì dùng với display: table và margin: auto
Code: Select all
<style>
.divTable
{
height:200px;
/* width:40%; */
background: #cdcdcd;
display:table;
margin:auto;
}
</style>
Code: Select all
<div class="divTable"><div class="divChild"> tthlan.info - canh giữa <div></div></div>
Code: Select all
<style>
.divBlock
{
display: block;
margin-left: auto;
margin-right: auto;
background: #29679a;
width:200px; // important
height: 100px;
}
</style>
Code: Select all
<div class="divBlock"> tthlan.info - canh giữa <div></div>
Code: Select all
<style>.divFlex
{
display: flex;
justify-content: center;
background: #29679a;
height: 100px;
/* width: 800px // center trong div */
}
</style>
Code: Select all
<div class="divFlex"> tthlan.info - canh giữa <div></div>