演示代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
div{
width: 300px;height: 40px;line-height: 40px;
background: #FF0000;margin: 100px auto;
/* text-align: center; *//* 水平排列,比如这边居中 */
text-align: justify;/* 文本两端对齐,单行文本无效,不常用 */
}
</style>
</head>
<body>
<!-- <div>我要自学</div> -->
<div>我要自学<p style="display: inline-block;width: 100%;"></p></div>
</body>
</html>