css text is centered horizontally

css skills

Horizontal center
(1) centrally ** horizontal text
Syntax: text-align: center;
Example:
<style type="text/css"> div{ width: 400px; height: 60px; line-height: 60px; text-align: center; /*实现文字水平居中*/ border: 1px solid red; } </style></head><body> <div> css实现文字居中: text-align:center; </div></body>

Guess you like

Origin blog.csdn.net/weixin_42322521/article/details/88642168