Skip to content

Instantly share code, notes, and snippets.

@edinsoncs
Created December 16, 2015 20:45
Show Gist options
  • Save edinsoncs/21d3652f60d89c12f378 to your computer and use it in GitHub Desktop.
Save edinsoncs/21d3652f60d89c12f378 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Input</title>
</head>
<style>
.tt:read-only {
background-color: green;
}
.tt:read-write {
background: red;
color: white;
}
.aa:read-only {
color: blue;
background: black;
}
.aa:read-write {
background: green;
color: white;
}
</style>
<body>
<form action="">
<input type="text" class="tt" value="Leer input en disable" disabled>
<input type="text" class="aa" value="editar info" redonly>
</form>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment