mirror of
https://github.com/roytam1/UXP.git
synced 2026-07-09 00:29:11 +00:00
17 lines
475 B
HTML
17 lines
475 B
HTML
<!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 type="text/css">
|
|
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>
|