Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css blur background behind div

/* Filterfunktionen */
backdrop-filter: blur(2px);
backdrop-filter: brightness(60%);
backdrop-filter: contrast(40%);
backdrop-filter: drop-shadow(4px 4px 10px blue);
backdrop-filter: grayscale(30%);
backdrop-filter: hue-rotate(120deg);
backdrop-filter: invert(70%);
backdrop-filter: opacity(20%);
backdrop-filter: sepia(90%);
backdrop-filter: saturate(80%);
Comment

blurring behind a div

body {
  margin: 0;
}
.wrapper {
  max-width: 100vw;
  background-image: url(https://images.pexels.com/photos/5491161/pexels-photo-5491161.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
  background-color: #cccccc; 
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.box {
  position: fixed;
  top: 30%;
  left: 40%;
  color: #333;
  font-weight: bolder;
  width: 20%;
  padding: 1rem;
  border-radius: 5px;
   background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(4px);
    -o-backdrop-filter: blur(4px);
    -moz-backdrop-filter: blur(4px);

    backdrop-filter: blur(4px);
}
Comment

PREVIOUS NEXT
Code Example
Css :: backface-visibility: hidden; 
Css :: blurred background 
Css :: crop image in img 
Css :: css :is 
Css :: @media css 
Css :: generate css on scss save 
Css :: hex values 
Css :: css font family for all titles 
Css :: css custom easing 
Css :: id selector css 
Css :: css calc margin-top based on height? 
Css :: css3 app basic 
Css :: css aplying everything 
Css :: importer police de caractère ds css 
Css :: div css 
Css :: how to add carasoule in html using css 
Css :: css hide text indicator 
Css :: qa vs q! 
Css :: css template columns and rows 
Css :: press on button outline shoul not appear csss 
Css :: html css limit page to a4 
Css :: changing the dots of the ul to ticks 
Css :: set orientation using react-to-print 
Css :: .container 
Css :: responsive arrow breadcrumbs css site:stackoverflow.com 
Css :: textbreak for long text 
Css :: css selector vs class name selenium 
Css :: font sizze xss 
Css :: how to dobody website and demo code html scss 
Css :: mouse hover text zoom effect 
ADD CONTENT
Topic
Content
Source link
Name
4+1 =