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

Popular posts from this blog

java - UnknownEntityTypeException: Unable to locate persister (Hibernate 5.0) -

python - ValueError: empty vocabulary; perhaps the documents only contain stop words -

ubuntu - collect2: fatal error: ld terminated with signal 9 [Killed] -