0

我只是不明白为什么背景在文本之上..我真的很感激任何帮助..

谢谢

 html


<body>
...
<img...>
    <div>
        <div> 
       drop down list
         <div>
    <div>

body>img{

这是背景选项,希望它调整高度和宽度
/* 设置规则以填充背景 */ min-height: 100%; 最小宽度:1024px;

              /* Set up proportionate scaling */
              width: 100%;
              height: auto;

              /* Set up positioning */
              position: fixed;
              top: 0;
              left: 0;
            }




            #wrap{
                max-width: 1000px;
                margin: 20px 0px;
                display:-webkit-box;
                -webkit-box-flex: 1;
                padding-top: 30px;
            }


            /* link styles und so */
            a:hover{
                cursor:pointer;
            }

            a{
                text-decoration: none;
                font-family: 'Sintony', sans-serif;
                color:black;
            }


            /* drop down list */

            .clear{
                clear:both;
            }

            ul#nav{
                list-style-type: none;
                padding: 0;
                margin-top:60px;

            }

            ul#nav li{
                background-color: white;
                float:left;
            }

            ul#nav li a{
                display:block;
                padding: 5px 10px;
                color:#000;
                text-decoration: none;
                border-bottom: 1px solid #ccc;
                list-style-type: none;
            }


            ul#nav li a:hover{
                background-color: #aaa;
            }

            ul#nav li ul li{
                float: none;
                list-style-type: none;
            }

            ul#nav li ul{
                position: absolute;
                display:none;
            }

            ul#nav li:hover ul{
                display: block;
            }
4

1 回答 1

0

使用 CSS 设置背景

正文 { 背景图像:url('你的文件路径');背景颜色:#cccccc;}

如果你不想使用 background-image 元素,而你想使用 img 元素,那么你应该使用 z-index 属性。在这里你可以玩它。

这里的例子:http ://www.w3schools.com/cssref/tryit.asp?filename=trycss_zindex

于 2013-05-11T15:15:39.417 回答