twitter bootstrap - How to add responsive media query -
this sample code , cant add responsive .how add code responsive media query ?
<form action="action_page.php"> first name:<br> <input type="text" name="firstname" value="mickey"> <br> last name:<br> <input type="text" name="lastname" value="mouse"> <br><br> <input type="submit" value="submit"> </form>
if talking css3 responsive media query have add
<head> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <style> body { background-color:lightgreen; } @media screen , (max-width: 500px) { body { background-color:lightblue; } } </style> </head>
Comments
Post a Comment