【js】css常用的样式整理

居中显示

style="text-align: center;display:block;"

margin

margin-bottom:20px;
margin-top:20px;
margin-left:20px;
margin-right:20px;

span 在div上下居中

style="display:table-cell;vertical-align:middle;"

div靠右显示

style="float:right;"

字体加粗

<b> 我是一条鱼 </b>

button水平居中

方式一:

<div style="text-align:center">
   <button>按钮居中</button>                     
</div>

方式二:

<div>   
   <button  style="display:block;margin:0 auto">按钮居中</button>                      
</div>
posted @ 2022-11-10 19:25  彬在俊  阅读(22)  评论(0编辑  收藏  举报