i am facing issue of css override. below css are applied on textbox(with class xdTextBox )
.xdTextBox {
padding:1px;
line-height:10px;
border:2px #cc0 solid;
}
input[type="text"] {
padding:10px;
margin:10px;
line-height:15px;
border:none;
}
I want Result as textbox with padding:1px, line-height:10px, border:2px #cc0 solid;
I can't use !important or inline stylesheet
is it possible ? please suggest your solution
Thanks in advance