CSS简易首页模板 body{ margin: 0; padding: 0; } #header{ width: 100%; height: 50px; background-color: #14151b; color: #ffffff; text-align: center; font-size: 20px; line-height: 50px; } #nav{ width: 100%; height: 50px; background-color: #ffffff; border-bottom: 1px solid #e9eaed; text-align: center; font-size: 18px; line-height: 50px; position: sticky; top: 0; z-index: 1; } #nav a{ text-decoration: none; color: #777; margin: 0 10px; transition: all .3s ease-in-out; } #nav a:hover{ color: #14151b; } #content{ width: 100%; height: 400px; background-color: #e9eaed; text-align: center; font-size: 24px; line-height: 400px; } #footer{ width: 100%; height: 50px; background-color: #14151b; color: #ffffff; text-align: center; font-size: 14px; line-height: 50px; position: fixed; bottom: 0; }CSS简易首页模板网站内容区域
在该示例代码中,大家使用了多个CSS样式,包括背景颜色、字体大小、行高等属性,来修改页面的样式和排版。其中,#header代表页面顶部标题栏,#nav代表页面导航栏,#content代表页面内容区域,#footer代表页面底部版权信息栏。
通过这个CSS简易首页模板,开发者可以在此基础上进行二次开发,不断优化和完善自己编写的网站页面,为用户提供更好的浏览体验。