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

WBOY
Release: 2016-06-24 12:06:52
Original
1830 people have browsed it

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>
Copy after login

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>
Copy after login
Copy after login
Copy after login

<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>
Copy after login
Copy after login
Copy after login
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>
Copy after login
Copy after login
Copy after login
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

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!