ladybird/Tests/LibWeb/Ref/expected/css-read-only-read-write-selectors-ref.html

15 lines
315 B
HTML
Raw Normal View History

2025-03-18 19:29:54 +01:00
<!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>