Hallo, ich übe gerade mit css und will den Abstand zwischen dem Bild, dem Text 'Eis' und dem nachfolgenden Text wenn möglich, verkleinern
HTML:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Unbenanntes Dokument</title>
<style type="text/css">
h2 {
color:#5858FA; /* Farbe blau */
font-size:28pt; /* Größe 28pt */
font-family:arial, "lucida console", sans-serif; /* Schriftart */
}
h2 { font-size: 30px; }
p { font-size: 1.2em; }
a { font-size: 0.7cm; }
h3 { font-size: 20px; }
p { font-size: 1.2em; }
a { font-size: 0.7cm; }
body {
background-color: #67E1F4;
}
</style>
</head>
<body><bgcolor=blue>
<p align=center>Bild 1:
<p align=center><img src="Malerei/Acrylmalerei/album/thumbs/Eis.jpg" width="200" height="150" alt=""/>
<h2><p align=center>"Eis"</h2>
<h3><p align=center>Acryl auf Leinwand<br>60 x 50cm
</body>
</html>