当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > common.css文件 网页设计常用的基本css控制

CSS样式表
第7天:CSS入门
第10天:自适应高度
VML的基本概念
Shape对象与VML坐标系
Line,Polyline(线)对象
Rect,RoundRect(矩形)对象
Group容器
ShapeType给VML制作模版
脚本动态生成VML
放大缩小VML
给VML增加事件
数据图表
文本修改留痕
VML应用实例大全
建立WEB两大经典!《VML极道教程》+FlashVml(闪耀之星)3.0中/英文版联合发布!
何为“VML”、VML的基底知识
VML网页文件的基本格式
vml简介
欢迎品尝用vml画的苹果~~
iframe 背景透明 实现方法

CSS样式表 中的 common.css文件 网页设计常用的基本css控制


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-12   浏览: 134 ::
收藏到网摘: n/a


代码如下:

html
{
   color:#000;
   background:#FFF;
}
//
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td
{
   margin:0;padding:0;
}
table  /* 设置table 的样式*/
{
    border-collapse:collapse;
    border-spacing:0;
}
fieldset, img
{
   border:0;
}
em, strong
{
   font-style:normal;
   font-weight:normal;
}
li
{
    list-style:none;
}
h1, h2, h3, h4, h5, h6
{
   font-size:100%;
   font-weight:normal;
}
body, input, button, textarea
{
    font-size:12px;
    font-family:Arial, Helvetica, sans-serif;
}
a{ text-decoration:none;outline:none;}
a:hover{   cursor:pointer;}
th, td{vertical-align:top;}