HTMLとCSSでハートの形を作る方法
方法1: 疑似要素を使用する方法<!DOCTYPE html> <html> <head> <style> .heart { position: relative; width: 100px; height: 100px; } .heart::before, .heart::after { content: ''; position: absolute; top: 0; width: 52px; height: 80px; border-radius: 50px 50px 0 0; background: >>More