菜鸟求css定义 标题居中和问题内容行距的代码

来源:百度知道 编辑:UC知道 时间:2024/07/08 02:04:39
现在的代码是这样的:
标题|:.postmessage h2 {font-size: 2.17em; margin-bottom: 0.5em; color: #0080FF}

内文:.postmessage { padding: 10px; overflow-x: hidden; }

postmessage h2 {font-size: 2.17em; margin-bottom: 0.5em; color: #0080FF;text-align:center}

内文:.postmessage { padding: 10px; overflow-x: hidden; line-height:30px //行距大小}

居中:margin:0 auto 0.5em auto
行距:通过line-height来定义

居中:margin:auto;
行距:line-height;