Search
 
SCRIPT & CODE EXAMPLE
 

CSS

Css style on particular screen

<style>

/*Any screen above of 1000px*/
@media only screen and (min-width: 1000px) {
  *
  {
    background-color: blue !important;
  }
}

/*Any screen bellow of 1000px*/
@media only screen and (max-width: 1000px) {
  *
  {
    background-color: red !important;
  }
}

</style>
Comment

PREVIOUS NEXT
Code Example
Css :: improved rendering css 
Css :: autofit grid css 
Css :: css invert columns 
Css :: css shaddow 
Css :: how to add background image in styled components 
Css :: Set table cellpadding and cellspacing in CSS 
Css :: box bottom shadow css 
Css :: display none transition 
Css :: border around img css 
Css :: remove background when autofill input css 
Css :: how to check if eloquent result is empty 
Css :: animation-direction property 
Css :: element not going to the bottom of the page 
Css :: line through in css 
Css :: set distance between text and underline 
Css :: font semi bold css 
Css :: hide li bullet css bootstrap 5 
Css :: css outline color 
Css :: css cut text of 
Css :: padding top 
Css :: make button stretch to fit text 
Css :: how to horizontally center in css 
Css :: bootstrap list 
Css :: css clip text 
Css :: css selector not contains attribute 
Css :: line in middle word css 
Css :: tailwind @apply 
Css :: reset list html css 
Css :: svg image shadow css 
Css :: hover media query 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =