Search
 
SCRIPT & CODE EXAMPLE
 

CSS

css heart

<style>
.heart::before,
.heart::after {
    content : '';
    display: block;
    width: 400px;
    height: 400px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
}
.heart {
    margin: 200px;
    width: 400px;
    height: 400px;
    background-color: red;
    transform: rotate(45deg);
    position: relative;
}
.heart::before {
    top: -200px;
    left: 0;
}
.heart::after {
    top: 0;
    left: -200px;
}     
</style>
<div class="wrapper">
    <div class="heart"></div>
</div>    
Comment

PREVIOUS NEXT
Code Example
Css :: How to remove specific td border in css 
Css :: how to give linear transprerancyon background image 
Css :: gulp with pm2 
Css :: send mails from lampp form localhost 
Css :: css background full screen 
Css :: breakpoint bootstrap 
Css :: change color of mark tag in html 
Css :: import image css 
Css :: git apagar branch local 
Css :: make blinking cursor disappear css 
Css :: jquery remove css class 
Css :: dotted underline css 
Css :: ul li seprator 
Css :: centrer verticalement css 
Css :: css first of type 
Css :: remove focus border 
Css :: flex direction 
Css :: position sticky css 
Css :: show ellipsis after text length 
Css :: change style of ordered list numbers css 
Css :: wrap a span 
Css :: styles only for IE 
Css :: html css add Avenir light font 
Css :: html table wrap text 
Css :: html how to use a background image fill not stretch 
Css :: progress bar color change css 
Css :: css module multiple classes 
Css :: tabla responsive css 
Css :: css vw scrollbar 
Css :: how to margin placeholdr text 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =