Search
 
SCRIPT & CODE EXAMPLE
 

CSS

hegith specific css in media query

/* Exact height */
@media (height: 360px) {
  div {
    color: red;
  }
}

/* Minimum height */
@media (min-height: 25rem) {
  div {
    background: yellow;
  }
}

/* Maximum height */
@media (max-height: 40rem) {
  div {
    border: 2px solid blue;
  }
}
Comment

PREVIOUS NEXT
Code Example
Css :: remove background when autofill input css 
Css :: css background full width 
Css :: box shadow border 
Css :: navigation bar stays on top 
Css :: change color of mark tag in html 
Css :: css center modal vertically 
Css :: mysqli check if delete was successful 
Css :: circle with 4 colors css 
Css :: overflow: scroll displaces the inline element 
Css :: css distance between text and input box 
Css :: android studio cardview background transparent 
Css :: how to make all buttons same size css 
Css :: label width css 
Css :: css stretch font vertically 
Css :: li only showing first bullet 
Css :: border not showing css 
Css :: padding top 
Css :: css radio button size 
Css :: before content from attribute 
Css :: To make card box appear more bigger when hover 
Css :: align text in center css 
Css :: css full grid span 
Css :: css image hover zoom and rotate 
Css :: css select none 
Css :: espacio entre lineas css 
Css :: margin not working on inline elements 
Css :: how to push text to the right css 
Css :: change element in iframe 
Css :: quitar borde a un boton css 
Css :: background color css 
ADD CONTENT
Topic
Content
Source link
Name
9+6 =