Nieuw lid |
|
Die witregel komt door je p tag, die heeft een soort standaard margin.
Probeer deze code maar eens, dan zie je het verschil:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style type="text/css">
.no_margin {
margin:0;
}
.heading_1 {
font-family:Tahoma;
font-size:18px;
color:#536F85;
}
</style>
</head>
<body>
Hier een beetje text
<p>Een paragraaf met margins</p>
Hier nog wat text
<p class="no_margin">Een paragraaf zonder margins</p>
En hier ook nog wat
<br>
<br>
Volgens mij kan je beter zo je webshop kopje stylen:
<br>
<span class="heading_1">Webshop</span>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> .no_margin { margin:0; } .heading_1 { font-family:Tahoma; font-size:18px; color:#536F85; } Hier een beetje text <p>Een paragraaf met margins </p> Hier nog wat text <p class="no_margin">Een paragraaf zonder margins </p> En hier ook nog wat Volgens mij kan je beter zo je webshop kopje stylen:
Meer over font-size |