zoukankan      html  css  js  c++  java
  • cssReset

    /*cssReset.css文件内容*/
    @charset "utf-8"
    /*整个页面的文字和背景色*/
    html{
    color:#000;
    background:#FFF;
    }
    /*设置外边距和内边距*/
    body,
    div,
    dl,
    dt,
    dd,
    ul,
    ol,
    li,
    h1,
    h2,
    h3,
    form,
    fieldset,
    input,
    textarea,
    p,
    blockquote,
    th,
    td{
    margin:0;
    padding:0;
    }
    /*设置表格的边框之间的间距*/
    table{
    border-collapse:collapse;
    border-spacing:0;
    }
    /*字体样式*/
    em,
    strong,
    b,
    u,
    i{
    font-style:normal;
    font-weight:normal;
    }
    /*去掉圆点*/
    ul,
    ol{
    list-style:none;
    }
    /*字体样式*/
    h1,
    h2,
    h3{
    font-size:100%;
    font-weight:normal;
    }
    /*字体样式*/
    input,
    textarea,
    select{
    font-family:inherit;
    font-size:inherit;
    font-weight:inherit;
    *font-size:100%; /* 兼容IE*/
    }
    /*图片去边框*/
    img{
    boder:0 none;
    }
  • 相关阅读:
    第六次实训作业
    事件处理程序
    第四次实训作业
    I/O流
    课程总结
    求和计算器
    常用类的课后作业
    窗口实训1
    课后练习----实现窗口的切换
    第五次实训作业继承
  • 原文地址:https://www.cnblogs.com/zyl-Tara/p/5414925.html
Copyright © 2011-2022 走看看