将h3标记置于代码中HTML
如何将h3标记置于我的代码中? (页/列的中心)将h3标记置于代码中HTML
<fieldset> <legend><h3>Customize Your Search</h3></legend> 
    <div> 
     <input type="checkbox" id="amd" name="interest" value="amd" checked> 
     <label for="amd">AMD</label> 
    </div> 
回答:
要对齐H3到页/列的中心(传说中) - 使用CSS传说对准中心:
legend {text-align:center}<fieldset>  <legend><h3>Customize Your Search</h3></legend>  
    <div>  
     <input type="checkbox" id="amd" name="interest" value="amd" checked>  
     <label for="amd">AMD</label>  
    </div>  
</fieldset>
以上是 将h3标记置于代码中HTML 的全部内容, 来源链接: utcz.com/qa/260716.html

