vlambda博客
学习文章列表

Html5及CSS常用格式:字体、字号、间距、对齐等属性

<!DOCTYPE html>
<html lang="zh-Hans-CN">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<style>
  * {
       margin:0;
       padding:0;
       font-size: 18px;    /*设置字号*/
       font-family: 宋体;   /*设置字体*/
       min-height: 32px;    /*设置最小行间距*/
       line-height: 32px;   /*设置行间距*/
       color: #000;         /*设置颜色*/
  }    
   .title {
       font-family: 微软雅黑, Microsoft YaHei, PingFangSC;      /*设置字体*/
       text-align: center;          /*设置对齐方式*/
       color: #262626;
       font-size: 32px;
       letter-spacing: 0;
       line-height: 48px;
       font-weight: 600;
       margin: 0 auto;
       max-width: 850px;
       white-space: pre-wrap; /*保留空白符序列,但是正常地进行换行*/
       word-break: break-word; /*在长单词或 URL 地址内部进行换行*/
  }
   .content{
       width: 1000px;
       margin: 0 auto;
  }
   p {
       display: block;
       text-indent:2em;
       margin: 24px 0;
  }
   </style>
   </head>