Responsive layout
Hi Shalu,
You can test media query with following way(step - by - step instruction):
Create new CSS asset in your app.
Details: http://prntscr.com/6a9um3/directPopulate it with following CSS code:
Details: http://prntscr.com/6a9qe9/direct@media screen and (max-width: 1000px) {
[data-role="content"] {
background: url(http://mypets.kiev.ua/sites/default/f...);
background-size: cover;
}
}Run app without frame(to have ability to change document size):.
Details: http://prntscr.com/6a9uww/directMake browser more then 1000px by width, you have app without background.
Details: http://prntscr.com/6a9vqw/directMake browser less then 1000px by width, you have app without background.
Details: http://prntscr.com/6a9wnw/directAfter correct test - you can change inside styles.
Regards.