Programovacie jazyky, rady, poradňa...
-
SimSaraRum
Amateur
- Príspevky: 11
- Registrovaný: 04 feb 2011, 19:41
Príspevok
od používateľa SimSaraRum »
čaute,
potreboval by som radu ako v
CSS posuniem ten oranzovy stvorec do stredu
Kód: Vybrať všetko
<html>
<head>
<style type="text/css">
#hlavicka {
background-color: blue;
width: 550px;
height: 100px;
}
#lavyokraj {
background-color: yellow;
width: 100px;
height: 450px;
}
#stred {
background-color: orange;
width: 550px;
height: 550px;
}
</style>
</head>
<body>
<div id="hlavicka"></div>
<div id="lavyokraj"></div>
<div id="stred"></div>
</body>
</html>
-
Prílohy
-

-
DjBass
Darca
- Príspevky: 2068
- Registrovaný: 24 máj 2008, 13:07
- Bydlisko: Košice
-
Kontaktovať používateľa:
Príspevok
od používateľa DjBass »
Kód: Vybrať všetko
<html>
<head>
<style type="text/css">
#hlavicka {
background-color: blue;
width: 550px;
height: 100px;
}
#lavyokraj {
background-color: yellow;
width: 100px;
height: 450px;
float:left;
}
#stred {
background-color: orange;
width: 550px;
height: 450px;
}
</style>
</head>
<body>
<div id="hlavicka"></div>
<div id="lavyokraj"></div>
<div id="stred"></div>
</body>
</html>