
Takhle se mi roztahuje jen na výšku okna browseru...
- Kód: Vybrat vše
<html>
<head>
<title>Example</title>
<style>
#longElement
{
position: absolute;
left: 300px;
height: 1000px;
width: 400px;
background-color: red;
}
#topToBottomElement
{
position: absolute;
background-color: black;
height: 100%;
width: 100px;
}
</style>
</head>
<body>
<div id="longElement"></div>
<div id="topToBottomElement"></div>
</body>
</html>