IT:AD:HTML:HowTo:FAQ
Summary
We all have those blank moments…
Process
Forms
- Q: How do I assign
widthto a label in a form (it's ignored):- A: Add a float to the label, so that it rises up to the top left of the row
divit is in:
<style>
label {float:left; width: 120px; margin-right: 10px;display:inline;}
</style>
<div>
<label for="name">Name:</label>
<input id="name" data-bind="value:record.name" required />
</div>
- Q: How to get html5 css be recognized in older browsers: