Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Заголовок документа</title> <style> #example { border: 3px dashed #1ebf42; padding: 15px; background: #1c87c9; background-clip: text; -webkit-background-clip: text; color: transparent; } </style> </head> <body> <h2>Пример свойства background-clip</h2> <p>Здесь установлено значение"text"</p> <div id="example"> <p>Фон отображается в пределах текста переднего плана.</p> </div> </body> </html>