Coggle requires JavaScript to display documents.
input[type="password"] { color: greenyellow; }
a[title] { color: purple; }
<a>
href
a[href*="google"]{ color: #1d3557; }
<section class="post most-popular">
section[class*="most-popular"] { background-color: red; }
section.most-popular { background-color: red; }
button:hover { background-color: #e63946; color: #faedcd; }
.post button:hover { background-color: #e63946; color: #faedcd; }
<h2>
h2::first-letter { font-size: 50px; }
::first-letter { font-size: 50px; }