+ 1
How to make a responsive webpage in html?
i want to make my webpage responsive to any device
4 Antworten
+ 5
Responsive is not meaning magical... and all you can get with just a meta tag is to prepare a non-responsivily designed page to be displayed less worst as possible, but not responsive at all:
<meta name="viewport">
https://css-tricks.com/snippets/html/responsive-meta-tag/
is probably what you're searching. Not real responsive, as such site are designed at start to be such, commonly by being think as 'mobile first' designed, and enhanced with biggest display devices, through the use of relatives units in the Css definitions and media queries to handle differetnts layouts regarding device properties (size, definition, orientation...)
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
+ 4
Easiest way to make a responsive website :- https://speckyboy.com/make-any-website-responsive/
0
Thank you Ekansh but is it possible with meta tag?
0
Thanks visph😊