zoukankan      html  css  js  c++  java
  • CSS样式设置记录

    在不懂php和wordpress的情况下,需要按照样式内容用php+wordpress+mysql做个网站,网页上有许多样式需要设置,包括颜色字体等要跟要求一致,记录下今天的结果。

    <div id="main" class="main_class"></div>

    CSS:

    #main

    {

    margin: 0 0 20px 0;      ---------上右下左的边距,用此方法可以控制div在页面上的布局

    }

    .main_class     -------注意这里.与上面#的区别

    {

    position:absolute;      
    z-index:0;                       -----------------通过这两句设此div处在顶层,z-index是z轴的值,设置div是否盖住其他内容

    }

  • 相关阅读:
    04.
    24
    39
    46
    72.
    21.
    logout: not found”
    Username is not in the sudoers file. This incident will be reported
    激活函数
    排序算法
  • 原文地址:https://www.cnblogs.com/hiflora/p/3200981.html
Copyright © 2011-2022 走看看