ksanjanadevi
02-24-2009, 09:45 AM
The below code does'nt give any result in case of style. I have given class name as "3" and have given proper css for it, but the style is not affected.. Any problem in the code??
<html>
<head>
<style type="text/css">
.3 {
color:red;
border:1px solid blue;
}
</style>
</head>
<body>
<a href="mailto:mailman@localhost" class="3">mailman@localhost</a>
</body>
</html>
<html>
<head>
<style type="text/css">
.3 {
color:red;
border:1px solid blue;
}
</style>
</head>
<body>
<a href="mailto:mailman@localhost" class="3">mailman@localhost</a>
</body>
</html>