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 :: display none transition 
Css :: align button to bottom of div 
Css :: How to remove specific td border in css 
Css :: how to make a div fill the screen 
Css :: import maxcdn.bootstrapcdn.com not in index.html in specific component file 
Css :: css background full width 
Css :: how to target input type with css 
Css :: html css first list item font bold 
Css :: change color to white svg with filter 
Css :: circle with 4 colors css 
Css :: color code for dark green 
Css :: css how to center a link 
Css :: how to center horizontally in css 
Css :: center div inside div flex 
Css :: how to set background image for button in css 
Css :: margin on absolute positioned element 
Css :: border color css 
Css :: padding in css 
Css :: vscode set terminal letter spacing 
Css :: hover on one div affect another 
Css :: underline css still there after text-decoration: none 
Css :: text in centre table css 
Css :: center tecxt css 
Css :: css how does hsl work 
Css :: how to make fonts respnsive 
Css :: css text spacing 
Css :: how many fonts can i add in a css font-face 
Css :: make web page float to center of page 
Css :: css text 
Css :: outside padding css 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =