Search
 
SCRIPT & CODE EXAMPLE
 

CSS

media max height css

@media only screen and (max-height: 500px) {
  /* place here CSS for when the screen is less than 500px tall */
  .card {
    width: 100%;
  }
}
Comment

media min height css

@media only screen and (min-height: 500px) {
  /* place here CSS for when the screen is more than 500px tall */
  .card {
    background: #111;
  }
}
Comment

media query for max width and height

@media only screen and (max-width: 535px), screen and (max-height:550px ) {
}
Comment

PREVIOUS NEXT
Code Example
Css :: star required css 
Css :: glass css 
Css :: width fit content 
Css :: CSS technique for a horizontal line with icons in the middle 
Css :: shrink div to fit content 
Css :: css font family 
Css :: how to increase text height css 
Css :: CSS adding background image from file 
Css :: add drop shadow css 
Css :: object fit css 
Css :: overflow css 
Css :: rgb blue color code 
Css :: style scrollbar table 
Css :: how to make fixed position responsive 
Css :: bulma uppercase 
Css :: how to link css to html flask 
Css :: darken scss 
Css :: inline input form css 
Css :: npm registry package not found 
Css :: css code examples 
Css :: css clear 
Css :: hide in css 
Css :: css bullet using ::before 
Css :: margin bottom not working 
Css :: border css dashed 
Css :: subtract height css 
Css :: css animation box shadow 
Css :: css active 
Css :: how to combine two screen sizes in media queries css 
Css :: change parent div css on over of child 
ADD CONTENT
Topic
Content
Source link
Name
1+9 =