Atributos | HTML
- Atributos | HTML
inert
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Inert attribute</title>
<link rel="stylesheet" href="/css/playground-theme.css">
</head>
<body>
<input placeholder="Editable Field1" />
<section inert>
<h2>Inert Section</h2>
<p>We cannot select this text!!</p>
<input placeholder="Inert Field" />
</section>
<input placeholder="Editable Field2" />
</body>
</html>