Maison  >  Article  >  interface Web  >  这样的一个问题样式怎么写?_html/css_WEB-ITnose

这样的一个问题样式怎么写?_html/css_WEB-ITnose

WBOY
WBOYoriginal
2016-06-24 12:19:13834parcourir

AAA
AAA

这是两个TD 有的有checkbox有的没有 我现在想要文字部分AAA居中对齐
请问改怎么写?


回复讨论(解决方案)

补充下 是AAA 显示时候对齐


AAA


AAA

用margin或者绝对定位试试可以不

AAA
AAA
LZ是只想要AAA对齐,但是checkbox不影响,还是左对齐,是这样的效果吗?

我最终显示的效果只要AAA是水平对齐的就好

AAA

套上个span自己微调吧

你已经给td添加了center,可以在添加一个css来控制checkbox,让他左浮动。

<!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 type="text/css">            input{                float:left;                }        </style>    </head>    <body>    <table width="100%">        <tbody>            <tr>                <td width="13%" align="center"><input name="Input" type="checkbox" value="" style="margin-left:-20px"/>AAA</td>            </tr>            <tr>                <td width="13%" align="center">AAA</td>            </tr>        </tbody>    </table>    </body></html>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn