HTML erklärt #10 Breiten und Höhen
geschrieben von Felix Beuster amDein Browser ist zu klein für den eingebetteten Player. Du kannst das Video hier auf YouTube ansehen.
Hier wird euch gezeigt, wie ihr Absätze (oder jedes andere Element) in der Breite oder Höhe verändern könnt.
Neue Attribute in diesem Teil: width, height
1
2<!DOCTYPE html>
3<html>
4 <head>
5 <title>Breiten und Höhen</title>
6 <meta charset="utf-8">
7 <meta http-equiv="content-type" content="text/html; charset=utf-8">
8 <style>
9 html, body {height: 100%;}
10 body {font-family: Calibri; background-color: #cccccc;}
11 p {background-color: #ff9900;}
12 .p100p {width: 100%;}
13 .p100px {width: 100px;}
14 .p50p {width: 50%;}
15 .p100h {height: 100px;}
16 .p10hp {height: 10%;}
17 </style>
18 </head>
19 <body>
20 <p class="p100p">Lorem ipsum dolor sit amet.</p>
21 <p class="p100px">Lorem ipsum dolor sit amet.</p>
22 <p class="p50p">Lorem ipsum dolor sit amet.</p>
23 <p class="p100h">Lorem ipsum dolor sit amet.</p>
24 <p class="p10hp">Lorem ipsum dolor sit amet.</p>
25 </body>
26</html>
Kommentare
Bisher keine Kommentare.Bitt warte 20 Sekunden, bevor du das Formular abschicken kannst.