hello,
the color that you have mentioned for paragraph it just enclosed with id first <p> tag and not implemented on another text within <p> tag. so use this way as below:
<html>
<head>
<style type="text/css">
#top{
color:green;
}
</style>
</head>
<body>
<p id="top">
my color is here
</p>
</body>
</html>
CSS code not work
Moderators: egami, macek, gesf
- WebOutGateway
- New php-forum User
- Posts: 65
- Joined: Mon Jun 13, 2011 9:25 pm
- Location: Pasig City, Philippines
- Contact:
You can also use this code instead for declaring id in a <p></p> tag.Simply set the color of p is green.
p{ color:green; }
p{ color:green; }