Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个困难。我必须将文本放在表格边框上作为标题。例如:
--------------这是标题-----------
是否有可能,如果有人可以提供解决方案?
有多种方法。
您可以创建一个表头,并设置文本position: relative并将其向上移动一点。虽然,这不是优雅的。
position: relative
我会改用一个 100% 有效的字段集。您需要给字段集一个边框而不是表格。
<fieldset> <legend>Your text</legend> <!-- table goes here --> </fieldset>