Heim >Web-Frontend >HTML-Tutorial >如何用css实现div中所有li元素左对齐,button元素居中对齐?代码如下(如果觉得难,可以修改html代码,但li和button元素必须在div中)_html/css_WEB-ITnose

如何用css实现div中所有li元素左对齐,button元素居中对齐?代码如下(如果觉得难,可以修改html代码,但li和button元素必须在div中)_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:04:572301Durchsuche


    

        
  • 美国

  •     
  • 中国

  •     
  • 日本

  •     
  • 德国

  • 法国

  •     

      
    
   

 


回复讨论(解决方案)

是否这样?

<!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"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title><style>.box{ text-align:center; width:500px;background:#FCF;margin:100px auto;}.demailUl{width:130px;height:180px;list-style:none; text-align:left;margin:0;padding:0;}</style></head><body>	<div class="box">    	<ul class="demailUl" >    	 <li><input type="checkbox" class="checkbox" name="Group" id="radio1" value="美国" />美国</li>    	 <li><input type="checkbox" class="checkbox" name="Group" id="radio2" value="中国" />中国</li>    	 <li><input type="checkbox" class="checkbox" name="Group" id="radio3" value="日本" />日本</li>    	 <li><input type="checkbox" class="checkbox" name="Group" id="radio4" value="德国" />德国</li><li><input type="checkbox" class="checkbox" name="Group" id="radio5" value="法国" />法国</li>    	</ul>    	<input type="button" value="确定" id="btnConfirm" />     	   </div></body></html>

yes,very good,thanks!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn