Eclipse HTML Editor: Each <input> tag on the new line

后端 未结 3 1886
梦谈多话
梦谈多话 2021-02-07 00:29
 
 
 

How can I d

相关标签:
3条回答
  • 2021-02-07 01:05

    Go to Window -> Preferences -> Web -> HTML Files -> Editor in the right panel set your Line Width to 999 and remove the input in the inline elements list

    0 讨论(0)
  • 2021-02-07 01:15

    Removing input from the list of inline elements will solve the problem for ya.

    0 讨论(0)
  • 2021-02-07 01:28

    You can use table even.

    <table>
    <tr><td>
    <input type="button" value=" 1 " />
    </td></tr>
    <tr><td>
    <input type="button" value=" 2 " />
    </td></tr>
    <tr><td>
    <input type="button" value=" 3 "/>
    </td></tr>
    
    0 讨论(0)
提交回复
热议问题