当涉及到 508 合规性时,标题属性是否可以用于可访问性?
例如:
<style>
#date_box{width:250px; border:2px solid #AAA;}
input{width:100px;}
</style>
<div id="date_box">
<input title="to" type="text" id="to" name="to" />
<label for="from">from</label>
<input type="text" id="from" name="from" />
</div>
还是最好做一个绝对位置和负边距的隐藏标签?