ladybird/Tests/LibWeb/Ref/expected/css-read-only-read-write-selectors-ref.html
2025-03-20 11:50:49 +01:00

14 lines
315 B
HTML

<!DOCTYPE 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>