+ 2
How do i set a responsive logo?
For a webpage , can anyone help me to set multiple styled logo for multiple screen using html5 and css?
2 Answers
+ 2
Please be more specific, you can change the style of your logo in your css stylesheet as well as the responsiveness of your webpage/logo.
use the @media screen to detect the width of the screen and change the style accordingly
@media screen (max-width: screen witdh){
css code here
}
ie:
@media screen (max-width: 800px) {
float: none;
width:100%;}
+ 3
Thank you..