织梦system.css是DedeCMS模板中的一个样式表文件,包含了网站前端页面样式的定义。
/* reset.css */ /* 重置浏览器默认样式 */ body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, { margin: 0; padding: 0; } body, input, textarea, select, button { font-family: "Microsoft Yahei", "宋体", Arial, Helvetica, sans-serif; font-size: 12px; } a { text-decoration: none; color: #333; } a:hover { text-decoration: underline; color: #f60; } img { border: 0 none; } ol, ul { list-style: none; } table { border-collapse: collapse; } /* system.css */ /* 定义页面样式 */ body { background: #f2f2f2; } a { outline: none; } a img { border: none; } .clear { clear:both; float:none; margin:0; padding:0; height:0px; line-height:0px; overflow:hidden; } .container { width: 98%; margin: 0 auto; } .header { height: 100px; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .footer { height: 50px; background: #f4f4f4; } .nav { height: 42px; line-height: 42px; background: #f60; color: #fff; } .nav ul { margin-left: 20px; } .nav li { float: left; margin-right: 20px; } .nav a { color: #fff; } .content { width: 800px; margin: 20px auto; background: #fff; box-shadow: 0 0 10px rgba(0,0,0,0.1); padding: 20px; }
你可以根据自己的需要修改织梦system.css样式表文件中的各项样式配置,以适应不同的网站需求。