How to set readonly property of textbox from css.
- by Muhammad Sajid
i create css code like
.inputHide {
font-size : 100px;
width : 100px;
height : 100px;
border : none;
background : transparent;
readonly : true;
}
But it does not work. Although if i use font-size of 1px then by using tab i can access that textbox & can change it's value.
Is there any way to make textbox readonly just using css..