当我使我的屏幕变小时,我的网站格式不合适

时间:2016-05-18 14:40:57

标签: html css

我正在制作一个网站,当我全屏显示网站看起来不错但是当我使屏幕变小时,div会出现等等。

这是它的打印屏幕: Printscreen

我该如何解决这个问题? 这是HTML和CSS即时使用:

<!DOCTYPE html>

<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Jari Rengeling</title>
        <link rel="stylesheet" href="../CSS/StyleSheet.css" type="text/css">
    </head>
    <body>

        <div id="header">

            <img alt="wood" src="../Images/wood.png" id="wood">

                <div id="menu">
                    <span id="naam">Jari Rengeling</span>
                    <ul id="nav1">
                        <li class="li1"><a href="index.html">Home</a></li>
                        <li class="li1"><a href="overmij.html">Over mij</a></li>
                        <li class="li1"><a href="ervaringen.html">Ervaringen</a></li>
                        <li class="li1"><a href="contact.html">Contact</a></li>
                    </ul>
                </div>

            <div id="headertext">
                <h1 class="space">Welkom</h1>
                <p class="space" id="headerp">Mijn naam is Jari Rengeling, ik ben een beginnend Applicatieontwikkelaar. Neem gerust een kijkje op mijn eigen portfolio.</p>
            </div>

        </div>

        <div id="footer">

            <div id="navigatie">
                <h2 id="h22">Navigatie</h2>
                    <ul id="ul2">
                        <li class="li2"><a href="index.html">Home</a></li>
                        <li class="li2"><a href="overmij.html">Over mij</a></li>
                        <li class="li2"><a href="ervaringen.html">Ervaringen</a></li>
                        <li class="li2"><a href="contact.html">Contact</a></li>
                    </ul>
            </div>

            <div id="projecten">
                <h2 id="h21">Projecten</h2>
                    <div id="project1"></div>
                    <div id="project2"></div>
                        <p>Geen huidge projecten...</p>
            </div>

            <div id="socialmedia">
                <h2 id="h23">Sociale Media</h2>
                    <img alt="facebook" src="../Images/facebook.png" id="facebook" class="miniaturen">
                    <img alt="twitter" src="../Images/twitter.png" id="twitter" class="miniaturen">
            </div>

            <div id="contact">
                <h2 id="h24">Contact</h2>
                <p>Klik hier om mijn contact gegevens te bekijken!</p>
            </div>

        </div>

    </body>
</html>

CSS

body 
{
    margin: 0px;
    padding: 0px;
    background-color: rgba(154, 135, 100, 1.0);
    width: auto;
}

#menu
{
    width: 100%;
    height: 100px;
    z-index: 1;
    background-color: rgba(154, 135, 100, 0.80);
}

#nav1
{
    margin: 0px;
    text-align: right;
    margin-right: 400px;
}

.li1
{
    display: inline;
    padding-left: 2%;
    font-size: 19px;
    line-height: 100px;
    font-family: Champagne;
    color: white;
}

#wood
{
    position: absolute;
    z-index: -1;
    height: 800px;
    width: 100%;
}

#naam
{
    font-family: Champagne;
    font-size: 40px;
    color: white;
    line-height: 100px;
    margin: 0px;
    position: absolute;
    margin-left: 400px;
}

.space
{
    margin: 0px;
    color: white;
    padding-top: 20px;
    text-align: right;
    font-family: Caviar;
}

#headerp
{
    max-width: 480px;
    display: inline-block;
    font-size: 25px;
}

#headertext h1
{
    font-size: 50px;
}

#headertext
{
    float: right;
    margin-right: 400px;
    margin-top: 240px;
}

#footer
{
    background-color: rgba(154, 135, 100, 0.80);
    height: 210px;
    width: 100%;
    margin-top: 700px;
}

#h21
{
    font-family: Caviar;
    margin-left: 400px;
    color: white;
    border-bottom: 1px solid white;
    max-width: 230px;
    padding-top: 10px;
}

#project1
{
    border: 1px solid black;
    width: 100px;
    height: 100px;
    margin-left: 400px;
    background-color: rgba(128, 128, 128, 0.15);
    position: absolute;
    padding-top: 0px;
}

#project2
{
    border: 1px solid black;
    width: 100px;
    height: 100px;
    margin-left: 530px;
    background-color: rgba(128, 128, 128, 0.15);
    padding-top: 0px;
    position: absolute;
}

p
{
    font-family: Caviar;
    color: #ebebeb;
}

#projecten p
{
    margin-left: 400px;
    margin-top: 120px;
    position: absolute;
}

#projecten
{
    margin-left: 200px;
    margin-top: 0px;
    padding-top: 0px;
}

#navigatie
{
    margin-left: 400px;
    position: absolute;
}

.li2
{
    list-style-type: none;
}

#ul2 
{
    position: absolute;
    margin: 0px;
    padding: 0px;
    padding-top: 10px;
    font-family: Caviar;
    color: #ebebeb;
}

#h22
{
    font-family: Caviar;
    color: white;
    padding-top: 10px;
    border-bottom: 1px solid white;
    margin: 0px;
}

a:hover
{
    color: black;
}

#h23
{
    font-family: Caviar;
    color: white;
    padding-top: 10px;
    border-bottom: 1px solid white;
    margin: 0px;
}

#socialmedia
{
    position: relative;
    margin-left: 900px;
    top: -56px;
    padding: 0px;
    max-width: 214px;
}

.miniaturen
{
    padding-right: 5px;
    padding-top: 20px;
}

#contact
{
    position: absolute;
    margin-left: 1200px;
    top: 802px;
    padding: 0px;
    max-width: 100px;
}

#h24
{
    font-family: Caviar;
    color: white;
    padding-top: 10px;
    border-bottom: 1px solid white;
    margin: 0px;
}

a
{
    text-decoration: none;
    color: white;
    font-family: Champagne;
}

2 个答案:

答案 0 :(得分:0)

css中有一条规则称为@media规则 @media用于创建自适应网页。

@media规则的示例:

 <!DOCTYPE html>
        <html>
            <head>
                <style>
                    body {
                        background-color: lightblue;
                    }

                    @media screen and (min-width: 480px) {
                        body {
                            background-color: lightgreen;
                        }
                    }
                </style>
            </head>
            <body>

                <h1>Resize the browser window to see the effect!</h1>
                <p>The media query will only apply if the media type is screen and the viewport is 480px wide or wider.</p>

            </body>
        </html>

答案 1 :(得分:0)

看到你的CSS代码,我注意到你几乎总是使用pixels作为衡量标准。您不应该这样做,除非您确切知道您的网站将打开屏幕的大小。否则,使用percentages总是一件好事。您可以像使用像素一样控制样式,当您调整大小时,由于所有内容都根据其父元素的大小,所以一切都会调整大小。

我更改了一些CSS和HTML代码供您查看。它并不完美,但你可以理解使用百分比代替像素的能力(:

http://jsbin.com/tacayaweya/edit?html,css,output

您可以使用@media查询(就像这里所说的那样)根据屏幕大小控制网站的样式。 @Advaith的例子是如何使用它的一个很好的例子。

正如评论中所提到的,使用像Bootstrap这样的框架可以帮助您设计网站。