Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to specify css for smaller screen

@media only screen and (max-width: 991px) and (min-width: 769px){
 /* CSS that should be displayed if width is equal to or less than 991px and larger 
  than 768px goes here */
}

@media only screen and (max-width: 991px){
 /* CSS that should be displayed if width is equal to or less than 991px goes here */
}
Comment

css for bigger screen size

@media screen and (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    width: 1570px;
  }
}
@media screen and (min-width: 1900px) {
  .container {
    width: 1870px;
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: css table column spacing 
Css :: css animate background image 
Css :: css click through an element 
Css :: how to make smth be in the bottom of the page css 
Css :: how to center vertically and horizontally in css 
Css :: css pause animation 
Css :: posicionar div centro da tela 
Css :: bodyparser limit 
Css :: why are suacer pans made of bakelite 
Css :: bold in label html 
Css :: two background css 
Css :: shadow on hover class on card bootstrap 
Css :: how to make a div fill the screen 
Css :: how to center an absolute div 
Css :: hvad er css 
Css :: how to move an image up in css 
Css :: ionic ios remove button appearance 
Css :: text overflow ellipsis two lines 
Css :: sass each index 
Css :: css fit iframe to div 
Css :: iPhone XS css 
Css :: css font face 
Css :: table td data in middle 
Css :: center item 
Css :: docker postgres 
Css :: css animation infinite 
Css :: css put span on new line 
Css :: background fixed 
Css :: css text spacing 
Css :: change color accordion arrow bootstrap 5 
ADD CONTENT
Topic
Content
Source link
Name
8+2 =