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.
我正面临一个 div 定位问题。
这是描述我的问题的小提琴:http: //jsfiddle.net/YbJ2q/11/
如何在不使用 CSS 属性的情况下对齐表格单元格中的红色 div 块"margin: -20px"?
"margin: -20px"
.t{ ... position:relative; ... } .handle{ ... top:0px; ... }
http://jsfiddle.net/YbJ2q/12/
您的问题在于您没有将 TD 的垂直对齐设置为top.
top
例子:
http://jsfiddle.net/YbJ2q/13/
(我将您的 margin-top 更改为 10px)