blob: 7fd0d265a30ba384c830c0f4659353165eeed01e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Text input with @title and :before and :after content rule</title>
<style>
label:before { content: "foo "; }
label:after { content: " baz"; }
</style>
</head>
<body>
<form>
<label for="test" title="bar"><input id="test" type="password" name="test" title="bar"></label>
</form>
</body>
</html>
|