Search
 
SCRIPT & CODE EXAMPLE
 

CSS

how to create a glass-polymorphism effect

/* 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

PREVIOUS NEXT
Code Example
Css :: change size of bullet point css 
Css :: JS make text not highlightable 
Css :: remove box shadow css 
Css :: christmas red color code 
Css :: how to make a glow effect in html 
Css :: add background overlay over background image 
Css :: how to center in css 
Css :: css for internet explorer only 
Css :: border radius not working 
Css :: css prevent line break 
Css :: responsive css grid 
Css :: tablet screen size css 
Css :: vertical text 
Css :: removing the unwanted border button css 
Css :: minmax in grid 
Css :: table td remove padding 
Css :: css not last of type 
Css :: how to get the length of element with display none 
Css :: ::-ms-clear 
Css :: css remove margin around page 
Css :: onclick url 
Css :: how to give linear transprerancyon background image 
Css :: padding top ratio 
Css :: josh comeau css reset 
Css :: space between li css 
Css :: vertically center div inside div 
Css :: how to rotate picture to the right in css 
Css :: change bot page background top.gg 
Css :: css dark mode 
Css :: change style of ordered list numbers css 
ADD CONTENT
Topic
Content
Source link
Name
9+4 =