Home  >  Article  >  Web Front-end  >  How to display two components in one line in table's td_html/css_WEB-ITnose

How to display two components in one line in table's td_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:06:521831browse

I don’t know why it is always displayed in different rows, I’m depressed
The following code

 <td><label>总结人:</label><input size = "10" name="remark-10" type="text"/></td>

Effect
Even after uploading the image for a long time, it still doesn’t work, ugh. The two controls are displayed in two rows

Please tell me how to display them on the same line!


Reply to the discussion (solution)

<table><tr><td><label>总结人:</label><input size = "10" name="remark-10" type="text"/><label>总结人:</label><input size = "10" name="remark-10" type="text"/></td></tr></table>

<table><tr><td><label>总结人:</label><input size = "10" name="remark-10" type="text"/><label>总结人:</label><input size = "10" name="remark-10" type="text"/></td></tr></table>
It’s because I use the label in DWZ, which has to be set to automatic or fixed length. It took me a long time to find it, but thank you for your attention.

<table><tr><td><label>总结人:</label><input size = "10" name="remark-10" type="text"/><label>总结人:</label><input size = "10" name="remark-10" type="text"/></td></tr></table>
What does your picture look like? Uploaded, why can’t I upload a super small picture after a long time?

Maximum 2MB, JPG, JPEG, GIF or PNG file

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn