Skip to content

Instantly share code, notes, and snippets.

@spaceCamel
Created January 24, 2011 15:08
Show Gist options
  • Save spaceCamel/793341 to your computer and use it in GitHub Desktop.
Save spaceCamel/793341 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Edit</title>
<style type="text/css">
ul.properties {
list-style: none;
}
ul.properties label {
width: 100px;
display: inline-block;
border: 1px solid aqua;
}
span.star {
position:relative;
float: left;
margin-left: -1em;
}
</style>
</head>
<body>
<ul class="properties">
<li>
<label for="name">
<span class="star">*</span>Namex</label>
<input type="text" id="name" />
</li>
<li>
<label for="description">
Description</label>
<input type="text" id="description" />
</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment