Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css circle shadow

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>css</title>

    <style>
        h2{
            text-shadow: 2px 5px 10px black;
            /* from order these are X Y Blur color values */
        }

        .box{
            height: 250px;
            background-color: bisque;
            width: 250px;


            box-shadow: 0px 0px 10px black;
            /* same values as the text shadow */
        }

        .drop{
            /* the css propertie is for this is "drop-shadow" values are same */
        }
    </style>

</head>
<body>
    
    <h1>Types of Shadows in css</h1>

    <h2>text Shadows</h2> 
    <!-- these shadows can be used to give your text a shadow -->

    <div class="box">
        <h1>Box shadows</h1>
    </div>

    <div class="drop">
        <h1>drop shadows</h1>
        <!--you need a png to this -->
    </div>

</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Css :: rotate animation css 
Css :: add background video to div css 
Css :: css remove white space below footer 
Css :: wordpress theme Adding style.css in function.php 
Css :: create arrow div css 
Css :: background image repeat css 
Css :: css comments 
Css :: change last character color css 
Css :: scss generate random color 
Css :: remove double quotes from string kotlin 
Css :: double border css 
Css :: css font-size 
Css :: why margin is not working on label css 
Css :: define element opacity css 
Css :: css border-bottom only length of text 
Css :: how to add default font css 
Css :: tailblocks 
Css :: image to fill container size 
Css :: mb in bootstrap 
Css :: media breakpoints 
Css :: progress bar bootstrap border 
Css :: div center 
Css :: in flex-wrap remove last item margin for every row 
Css :: loading animation css 
Css :: materializecss 
Css :: z-index 
Css :: mobile first media queries 
Css :: min-height not working on body 
Css :: animated progress bar css 
Css :: css set styles for input text 
ADD CONTENT
Topic
Content
Source link
Name
9+3 =