Search

0303_text_deco

대분류
CSS3
소분류
CSS3
영상
개념
<html lang="ko"> <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>Document</title> <style> h1 { text-decoration:overline; } h2 { text-decoration:line-through; } h3 { text-decoration:underline; } </style> </head> <body> <h1>텍스트 장식의 예입니다.</h1> <h2>텍스트 장식의 예입니다.</h2> <h3>텍스트 장식의 예입니다.</h3> </body> </html>
HTML
복사