HTML元素的动态定位

时间:2013-12-13 06:30:17

标签: html css

我有一个网站工作正常,看起来没问题等等。问题是我不是最好的定位,浮动等。而不是只是排列一个在另一个下面,我必须手动设置越来越大的利润我添加的每个附加段落。

我的导航栏由固定div内的ul组成。 ul不是浮动的,但是“li”是。我需要一种方法来定位这个和其他元素,使一切都在导航栏下面。我尝试过使用clear:both;无济于事。我知道我的位置到处都是,我真的不明白如何定位和浮动是否继承。

以下是website的链接。

HTML:

<!DOCTYPE html>
<html>
    <head>
        <link href='http://fonts.googleapis.com/css?family=Ubuntu:400,500,400italic' rel='stylesheet' type='text/css'>
        <link rel="stylesheet" type="text/css" href="stylesheet.css">
        <link rel="stylesheet" type="text/css" href="webfonts/stylesheet.css">
        <title>
            Artwork
        </title>
    </head>
    <body>
        <div class="navbar">
        <img src="images/navbar/title.png" class="navbar">
            <ul>
                <li><a href="index.html">Home</a></li>
                <li><a href="art.html">Art</a></li>
                <li><a href="about.html">About Me</a></li>
            </ul>
        </div>
        <h1 id="header">Welcome to my Website!</h1>
        <p>
            The purpose of this website is to showcase my artwork, and, in a way, my HTML skills. Click on
            one of the links up top, and you can see some of my <b>artwork</b> or maybe learn <b>about me</b>!
        </p>
    </body>
</html>

CSS:

html{
    height: 100vh;
    width: 100vw;
    margin: 0px;
}

body{
    height: 100vh;
    width: 100vw;
    margin: 0px;
    background-color: #009900;
}

div.navbar{
    height: 50px;
    width: 100vw;
    position: fixed;
    background-image:url('images/navbar/navbar.png');
    background-repeat:repeat-x;
}

#header{
    position: relative;
    float: left;
    margin: 40px 0px 0px 5px;
    font-family: 'League Gothic', sans-serif;
}

p {
    position: absolute;
    margin: 100px 0px 0px 5px;
    font-family: 'Ubuntu', sans-serif;
}

img.navbar{
    float: left;
}

ul{
    list-style-type: none;
    margin: 4px 0px 0px 0px;
    padding: 0;
    overflow: hidden;
}

a:link,a:visited
{
display: block;
width: 120px;
font-weight:  500;
font-family: 'Ubuntu', sans-serif;
color:  #FFFFFF;
text-align: center;
padding: 4px;
margin: 0px;
text-decoration:  none;
}

li{
    float: left;
{

1 个答案:

答案 0 :(得分:0)

是的,而不是为所有事情手动提供保证金为什么不使用保证金整数包装的内容固定导航栏check this fiddle后面的内容

.nav-bar{
    height:50px;
    overflow:hidden;
     background-color:#000;
     width:100%;
     position:fixed;
     top:0px;
     left:0px;
 }

.content{
    margin-top:75px;
}

和html

<div class="nav-bar">
    <h1>
        topbar
    </h1>
    <ul>
        <li>one</li>
        <li>tow</li>
        <li>three</li>
    </ul>
</div>
<div class="content">
    <h2>content</h2>
    <p>hi hello ouyasd asdasda dasdasd</p>
     <p>hi hello ouyasd asdasda dasdasd</p>
     <p>hi hello ouyasd asdasda dasdasd</p>
     <p>hi hello ouyasd asdasda dasdasd</p>
</div>