I have a div on my html page that has three radio buttons in it:
<html> <head> <link href="CSS/mystyle.css" rel="stylesheet" type="text/css" media="screen" /> </head> <body> <div id="outside"> <div id="inside"> <input type="radio"> apple <input type="radio"> orange <input type="radio"> banana </div> <div id="others"></div> </div> </body> </html>
My CSS is in the CSS directory,
CSS / mystyle.css
#inside{ font-size:12px; border-color:#ff3366; width: 300px; height: 50px; }
width , height and font-size set successfully, but border-color:#ff3366; doesn't show why? Why I was not able to set the border color for the div?
-------------------- DETAILS ---------------------
By the way, how to find my inner div (with id = "inside") on the right side of the outer div, with a mark of about 100px to the right of the border of the outer div?
source share