I want to make my website responsive in phone ... etc
My questions is I want to know the width that I make it in @media (CSS) to any type
for example phone I make 768px that's right ?
I need your help :'(
I want to make my website responsive in phone ... etc
My questions is I want to know the width that I make it in @media (CSS) to any type
for example phone I make 768px that's right ?
I need your help :'(
These are the sizes that Twitter Bootstrap uses for their responsive layout.
/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
}
/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
}
/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
}