My input fields have some border rounding and are displaying an unwanted shadow on the right and bottom. I've tried using the box-shadow
property to control the width, color, and other properties of the shadow, but it's not working as expected. How can I style or remove this mysterious shadow that isn't affected by the box-shadow property?
.options {
width:40px;
text-align:center;
margin-left:30px;
border-radius: 5px;
border-style:outset;
box-shadow: none;
}
<input type="text" class="options" id="3" name="1" value="3" readonly>