跑步 ”
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <head><meta http-equiv="content-security-policy" content="script-src 'none'"> <style> [class*="te"] { background: yellow; } </style> </head> <body> <h2>CSS селектор [attribute*="value"]</h2> <div class="first_test">Первый div элемент.</div> <div class="second">Второй div элемент.</div> <div class="my-test">Третий div элемент.</div> <p class="mytest">Это какой-то текст в параграфе.</p> </body> </html>