-2

how to set a colour for input type radio in html without using CSS, is it possible to make something like:

   <input type="radio" color"red"></input>
Ghassar
  • 1
  • 1

1 Answers1

0
<input type="radio" style="color:red;"/>

Like this but it is not recommanded. Listen to those comments and include the css in a separate file.

no_one
  • 19
  • 7
  • Strictly speaking, though, that's just a less-efficient means of using CSS (though admittedly CSS is the only valid way to go to 'solve' this 'problem'). – David Thomas Jan 26 '15 at 03:18