Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv1/ovningar/
baskod.html
bentogrid.html
bilder/
css/
gimp_logga.html
index.html
js/
meny1/
meny2/
ovning-flexbox.html
ovning0.html
ovning00.html
ovning1.html
ovning10.html
ovning11.html
ovning12.html
ovning2.html
ovning3.html
ovning4.html
ovning5.html
ovning6.html
ovning6b.html
ovning7.html
ovning8a.html
ovning8b.html
ovning9a.html
ovning9b.html
ovning9c.html
ovning9d.html
sida2.html
ovning6.html
106 lines UTF-8 Windows (CRLF)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="utf-8">
<title>Övning 6</title>
<style>
div {
width: 175px;
height: 100px;
}
p {
margin: 0;
padding: 0;
}
.align-right {
text-align: right;
}
.yellow {
background-color: yellow;
}
.strike {
text-decoration: line-through;
}
#div1 {
position: absolute;
left: 20px;
top: 10px;
z-index: 1;
background-color: blue;
}
#div2 {
position: absolute;
left: 75px;
top: 50px;
z-index: 2;
background-color: green;
}
#div3 {
z-index: 3;
left: 50px;
top: 85px;
position: absolute;
background-color: yellow;
}
#div4 {
background-image: url("./bilder/metal.jpg");
width: 500px;
height: 100px;
border: 5px solid red;
top: 500px;
left: 10px;
}
#div5 {
width: 45%;
}
.indent {
text-indent: 50px;
}
</style>
</head>
<body>
<div>
<div id="div1">
<p>Lager 2 har blå färg</p>
</div>
<div id="div2">
<p>Lager 3 har grön färg</p>
</div>
<div id="div3">
<p>Lager 1 har gul färg. märk väl i vilken ordning lagren läggs in i sidan och vilket som är överlappande i den gemensamma ytan</p>
</div>
</div>
<br><br><br><br><br><br>
<div id="div4">
<p class="align-right">Här kommer lite vanlig text...</p>
<p class="align-right">Man kan göra <span class="yellow">f ä r g ö v e r s t r y k n i n g a r </span> lite som man vill om man kan hantera stilmallar!</p>
<p class="align-right">Eller så kan man göra <span class="strike">överstrykningar</span></p>
</div>
<br><br>
<div id="div5">
<p class="indent">Här kommer lite indragen text Här kommer lite indragen text Här kommer lite
indragen text Här kommer lite indragen text Här kommer lite indragen text Här
kommer lite indragen text Här kommer lite indragen text Här kommer lite indragen
text Här kommer lite indragen text Här kommer lite indragen text Här kommer lite
indragen text Här kommer lite indragen text Här kommer lite indragen text Här
kommer lite indragen text
</p>
<br>
<a href="./ovning6b.html">Övning 6b</a>
</div>
</body>
</html>