What is the easiest and fastest way to make website responsive using css(no js) | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the easiest and fastest way to make website responsive using css(no js)

30th Sep 2020, 11:36 AM
Md.Ruhan Chowdhury
Md.Ruhan Chowdhury - avatar
7 Answers
+ 4
Media Queries adapt the layout of the web page to monitor classes using breakpoints in the CSS. At the breakpoints the design changes. There are good frameworks that automatically generate the basic framework for the layout - but media queries are not as complex as they appear at first glance. The most elaborate step in the development of a responsive web design is the plan how the website should be built on different monitors. @media only screen and (max-width: 599px) { … } @media only screen and (min-width: 600px ) { … } @media only screen and (min-width: 980px ) { … } @media only screen and (min-width: 1260px ) { … } https://code.sololearn.com/WJqv5tPfKuso/?ref=app
30th Sep 2020, 3:22 PM
JaScript
JaScript - avatar
+ 4
I made a mistake earlier. With media queries it's possible.
1st Oct 2020, 11:50 AM
Sonic
Sonic - avatar
+ 2
I don't think it's possible.
30th Sep 2020, 12:25 PM
Sonic
Sonic - avatar
+ 2
Md.Ruhan Chowdhury please read carefully my previous post. You have to make a plan for your webside for each media and after that coding, what you planned. To change only of the font size is not the solution. There will be needed some more idea for example as follows: .column { width: 90%; margin: 1em auto; } .column h2 { font-size: 1.2em; color: firebrick; } @media only screen and (min-device-width: 40em) { .column { width: 48%; float: left; } }
30th Sep 2020, 3:51 PM
JaScript
JaScript - avatar
+ 1
JaScript thanks.Actually by these helps,I learn many new things day by day❤️❤️
30th Sep 2020, 3:53 PM
Md.Ruhan Chowdhury
Md.Ruhan Chowdhury - avatar
+ 1
Your welcome, and happy coding.
30th Sep 2020, 4:03 PM
JaScript
JaScript - avatar
0
JaScript that's you shown was a easy project for making responsive.But do you make this responsive? https://code.sololearn.com/WWp2A06MTfmg/?ref=app
30th Sep 2020, 3:40 PM
Md.Ruhan Chowdhury
Md.Ruhan Chowdhury - avatar