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.
我尝试在表格后添加点,方法是使用table::after选择器创建一个点元素并将其居中margin: 5px auto 5px auto;。它有效,但似乎在第一个表格列之后添加了点,而不是在表格本身之后:
table::after
margin: 5px auto 5px auto;
为什么以及如何解决它?
实时代码http://cssdeck.com/labs/ew6g4ntf/0
这是一种有点奇怪的方法,但是按照您的解决方案,这可能是因为表格在单元格的基础上工作得最好。这就是为什么 table::after 也类似于单元格的原因。
但是,如果你把这整个东西放在一个 div 中,然后你把它浮动到左边,然后你用 div 而不是 table 来做这个 ::after 事情,它会很好用。
这是一个预览