Hey, Lots of people ask me to How to remove text from input type submit button in css html.
there are two basic way to remove text from submit in css and html
there are two basic way to remove text from submit in css and html
IN HTML
1) in html you can add value parameter in input tag
<input type="submit" value="" >
In css
2) in css you can add text-indent property
<input type="submit" class="btn">
.btn{
text-indent = -9999px;
}
1) in html you can add value parameter in input tag
<input type="submit" value="" >
In css
2) in css you can add text-indent property
<input type="submit" class="btn">
.btn{
text-indent = -9999px;
}