1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-17 12:55:07 +00:00
serenity/Tests/LibWeb/Ref/css-read-only-read-write-selectors-ref.html

13 lines
299 B
HTML

<style>
.read-write {
background-color: green;
}
.read-only {
border: 4px solid magenta;
}
</style>
<input type="text" class="read-only">
<input type="text" class="read-write">
<p class="read-only">Well hello friends</p>
<p class="read-write">Well hello friends</p>