<p id="nope">
So you're trying to select this text...
</p>
<p>
You should select this, instead.
</p>
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
#nope {
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10+ and Edge */
user-select: none; /* Standard syntax */
}
p {
color: wheat;
font-size: 1.5rem;
text-align: center;
font-family: 'Rubik', sans-serif;
margin-top: 40px;
}
html {
background: #4d4c7d;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.