2017年10月12日 星期四

CSS 置中方式


CSS 置中方式


我被置中了
margin : auto;會使容器置中 max-width : 200px;寬度最大不超過200px, 父容器縮小到200px以下時不會出現scrollbar.而是自動縮減寬度
程式碼如下:
<p class="custom-center">我被置中了</p>
view raw index.html hosted with ❤ by GitHub
.custom-center{
max-width:500px;
margin: auto;
border: 3px solid #73AD21;
}
view raw style.css hosted with ❤ by GitHub