Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css code to blur background

/* Setting background image and filter to blur */
body{
      background-image: url("software_code_3.jpg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      color: whitesmoke;
      backdrop-filter: blur(8px);
/*       -webkit-filter: blur(8px); */
    }
/* creating a kind of "glass-polymorphism" effect with a light-dark background*/
.container {
      border: 1px;
      border-radius: 5px;
      background-color: rgb(0,0,0);
      background-color: rgba(0,0,0, 0.4);
      padding: 20px;
    }
Comment

css background transparent blur

backdrop-filter: blur(10px);
Comment

transparent blur effect css

body {
    background: #300000;
    background: linear-gradient(45deg, #300000, #000000, #300000, #000000);
    color: white;
}
#mask {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.5;
}
img {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
    position: absolute;
    left: 100px;
    top: 100px;
    height: 300px;
    width: auto;
}
Comment

PREVIOUS NEXT
Code Example
Css :: https://www.youtube.com/s/desktop/f357c206/cssbin/www-main-desktop-watch-page-skeleton.css 
Css :: css hide after seconds 
Css :: selector css 
Css :: move cursor 
Css :: css good border radius 
Css :: css selector first level child 
Css :: css properties 
Css :: how to apply a transition to a child element when hovering over parent element 
Css :: select custom css 
Css :: css gradient 
Css :: text in one line css 
Css :: tabs css only 
Css :: media query not working with rem 
Css :: hiding text css and leaving whitespace 
Css :: css background cover y axis 
Css :: react bootstrap css module use media query mixin 
Css :: css black neomorphism 
Css :: button not aligning right css 
Css :: css os dependent font family 
Css :: how to align text in css 
Css :: mdn css marker 
Css :: inline element not take padding why? 
Css :: -webki slider runnable track 
Css :: how can you make us stop our image from the web css html 
Css :: use PurifyCSS with hugo 
Css :: how set image at top in wordpress 
Css :: how do I make secret keys available in gatsby-config from Netlify 
Css :: Display the Widget Area 
Css :: fade color towards top css 
Css :: CSS hide first li separator on each line - responsive horizontal css menu 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =