English 中文(简体)
表格和两个文本领域
原标题:Align one form and two text areas

I ve got a FORM which contains a 32*50 TEXTAREA and a Submit button.

现在我要横向地调整包含额外信息的两个方面。 理想的情况是,三个文本领域(用户可以进行类型/产品类型和另外两个部分)应有相同的宽度,并出现在三个相应的栏目中。

如果我想这样做,我是否只使用超文本? 如果是,如何? 表格,一行和三条 t? (萨摩亚法典将受到欢迎)。

或者说,你会建议社会保障局?

最佳回答

文字区是线性元素,如果集装箱的宽度足够大,则会横向地加以调整。 http://jsfiddle.net/FATfJ/“rel=“nofollow” http://jsfiddle.net/FATfJ/。 我不知道这是你所需要的。

法典:

<form id="a-form">
  <textarea></textarea>
  <textarea></textarea>
  <textarea></textarea>
</form>

#a-form textarea {width: 100px;}
问题回答

由于<代码>textarea是一个在线要素,你只能将这种内容放在另一个内容之后。 然后,如果它们适合,它们就会出现在一条线上,但如果需要,则将分成两条或三条线。

如果没有足够的横向空间,那么如果你会强行进行横向滚动,那么你就可以使用一行的桌子。 标记没有什么特殊意义:

<table><tr><td><textarea ...></textarea>
           <td><textarea ...></textarea>
           <td><textarea ...></textarea>
</table>

但是,如果你想调整这一方法,那么,它最好与安保部合作。

如果<代码>textarea要素需要贴标签,那么,你可以把标签放在表格的另一行(一开始)。

理想的情况是,你们需要在安全局和超文本上加一。 或许,你可以使用田地把田地放入,然后通过利用地安会相互传承。 你们能够利用特别安全局设定宽松和边际等,你们应该能够以这种方式走下一切。

你可以使用表格来做到这一点,但我发现,这些表格能够比实际需要增加更多的编码。





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签