JSFiddle - React, Tailwind, and code Playground

http://stackoverflow.com/questions/7094608/why-my-css-did-not-set-the-color-of-div-border-successfuly/

HTML

<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>

CSS

#outside{
    border: 1px solid blue;
    overflow:auto;
}
#inside{
    font-size:12px;     
    border-color:#ff3366;
    border-size: 1px;
    border-style: solid;
    width: 300px;
    height: 50px;
    float: right;
    margin-right: 100px;
}