Dobrý den. Mám kód (čisté HTML):
<html>
<head>
<title>
Styl 1 - Ukázka
</title>
<style>
#cent
{
background-color: #1695152;
}
body
{
color: Gray;
}
#Header
{
width: 765px;
height: 77px;
background-image: url('./Header.GIF');
}
#Content
{
width: 765px;
background-image: url('./Content.GIF');
}
p, h1, h2, h3
{
color: White;
}
#Footer
{
width: 765px;
height: 69px;
background-image: url('./Footer.GIF');
}
.lines
{
background-image: url('./lines.GIF');
color: Black;
}
</style>
</head>
<form id="cent">
<body>
<div id="Header">
</div>
<div id="Content">
<h1>NADPIS</h1>
<p>bla bla bla bla bla <font class="lines">linky linky linky</font></p>
<h3>Papa</h3>
</div>
<div id="Footer">
</div>
</body>
</form>
</html>
ale pořebuji, aby nebyly na stránce bílé řádky mezi DIVama: http://psom.aspone.cz/Styl1/styl.html Poraďte mi prosím, jak to udělat.
|