blob: 01c5604826603a22fb3c7cf8b45d8c7304457fe4 (
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"><input id="test" type="file" name="test" title="bar"></label>
</form>
</body>
</html>
|