mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-21 08:21:54 +00:00
14 lines
315 B
HTML
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>
|