Hi,
My screen size is differ in mobile and the tablet. so i need solution to fix the issue.
Thanks,
Prasath
Hello,
@Prasath P
For responsive screen css you can try CSS Media Queries.
Sonali verma
OS adds classes that help you to make your app responsive. whenever you want to style for mobile add .phone at the beginning of your selection, and .tablet for tablets they also have .desktop for PC
You can achieve the same using media type,
@media (max-width: 640px)
{
//place your css inside this
}
Hope it helps you.
Thanks.
@Prasath P @media only screen and (min-width: 320px) and (max-width: 767px) { /* styles for mobile devices */ } @media only screen and (min-width: 768px) { /* styles for tablet devices */ } for fixing your issue.
If you use OutSystems default css it will automatically take care of responsiveness but if you use custom css then you need to use media query to make you application responsive for different platforms
Thanks