Sir I have these codes
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled 1</title>
<style type="text/css">
#box1 {
width:400px;
height:60px;
padding:5px;
border:1px solid blue;
margin:50px auto;
overflow:auto;
}
#menu ul li {
display:inline;
margin:2px;
background:khaki;
width:150px;
height:50px;
color:blue;
font-size:14px;
font-weight: bold;
padding: 10px;
border-radius: 10px 10px 0 0;
}
#menu ul li a:hover {
text-decoration:underline;background-color:red;color:white;
}
</style>
</head>
<body>
<div id="box1">
<div id="menu">
<ul>
<li><a href="">Contact Us</a></li>
<li>Products</li>
<li>Gallery</li>
<li>About Us</li>
</ul>
</div>
</div>
</body>
</html>
The problem is I want to increase the width of <li> from this part
#menu ul li {
the current value is width:150px;
but when I Change it as width:200px;
it does not take effect.
What I am doing wrong?