P & H1 uden linje afstand
HejNår jeg bruger <p> eller <h1> til tekst, laver den dobbelt linjeafstand mellem hver linje. Se http://www.i-butikker.dk/exp/default.html
Koden i html filen:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<p class="black-12">Test med P</p>
<p class="black-12">Test med P</p>
<p class="black-12">Test med P</p>
<br><br><br><br>
<h1 class="black-12">Test med h1</h1>
<h1 class="black-12">Test med h1</h1>
<h1 class="black-12">Test med h1</h1>
<br><br><br><br>
Normal tekst<br>
Normal tekst<br>
Normal tekst
</body>
</html>
Koden i CSS filen:
p.black-12 {
color: #FF0000;
font-family: verdana, arial, sans-serif;
font-variant: normal;
font-weight: normal;
font-size: 12px;
}
h1.black-12 {
color: #000000;
font-family: verdana, arial, sans-serif;
font-variant: normal;
font-weight: normal;
font-size: 12px;
}
Hvordan får jeg fjernet denne linjeafstand samt linjeskift??? Det skal bare se ud som normal tekst.
Hvad er forskellen egentlig på at bruge h1 og p????
Mvh. Martin
