HTML-szerkesztés kezdőknek!!!
  • Danny1987
    #7762
    Ez van az index.css-ben:
    <html>
    html xmlns="http://www.w3.org/1999/xhtml" lang="hu">
    <head>
    <title>CSS középre igazítás teszt</title>
    <link rel="stylesheet" type="text/css" href="index.css" media="screen" />
    </head>
    <body>
    <div id="container">

    {
    background: #0000ff;
    color: #ff0000;
    }

    div#container
    {
    width: 440px;
    height: 400px;
    background: #ff0000;
    color: #0000ff;
    margin: 0 auto 0 auto;
    }
    a msik kettőt ezt:
    div#container {
    margin-left: 10%;
    margin-right: 10%;
    }
    {
    background: #0000ff;
    color: #ff0000;
    }

    div#container
    {
    width: 440px;
    height: 400px;
    background: #ff0000;
    color: #0000ff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -200px;
    margin-left: -220px;
    }
    </div>
    </body>
    </html>

    De csak a szöveget hozza ki.