0
Can we bold username text?
I want to bold the username text but the code is not working when i use code "username" between <strong>attribute
1 Answer
+ 2
an <input> by default doesn't inherit text properties... you need either to style the element itself with css (font-weigth:bold;) or explicitly style it for inheriting font property/ies (font:inherit; or font-weight:inherit; and so on...)