Crew algemeen |
|
zet er dan ook eventjes een a- en een p-tag bij zonder een classe "zwart" medieval, anders weet je nog niet of hij het niet op ALLE a/p tags toepast
//edit:
<html>
<head>
<style type='text/css'>
body { background-color: #000; color: #fff; }
a,p.zwart { color: #f00; }
</style>
</head>
<body>
<a class="zwart">test</a>
<br><br>
sads
<br><br>
<p class="zwart">test2</p>
<p>test3</p>
<a>test4</a>
</body>
</html>
<html> <head> <style type='text/css'> body { background-color: #000; color: #fff; } a,p.zwart { color: #f00; } </style> </head> <body> <a class="zwart">test</a> <br><br> sads <br><br> <p class="zwart">test2</p> <p>test3</p> <a>test4</a> </body> </html>
test = rood, sads = wit, test2 = rood, test3 = wit, test4=rood
Zo zet je dus iets over ALLE a-tags :-) |