我已经构建了一个flexbox日历布局,其中包含悬停时的CSS工具提示。我正在尝试将这些工具提示与它们对应的日历日期垂直对齐。
我想在CSS中实现这一点,但一直无法做到。目前,我已将left
值设置为4em
并动态计算jQuery中的top
值,因为这些工具提示的高度可能会有所不同。即使这样做,工具提示也不是完全垂直对齐的,我不知道为什么。
这是我的jQuery
功能:
$('.cal-tooltip').each(function() {
var calTooltipHeight = $(this).outerHeight(true) / 2;
$(this).css('top', -calTooltipHeight);
});
CSS:
.tooltip {
position: absolute;
z-index: 1;
background-color: white;
box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}
.tooltip:after {
content: '';
position: absolute;
width: 0;
height: 0;
margin-left: -15px;
margin-top: -15px;
top: 50%;
box-sizing: border-box;
border: 15px solid black;
border-color: transparent transparent white white;
transform-origin: 50% 50%;
box-shadow: -5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.tooltip > div {
padding: 15px;
}
.tooltip > div:not(:first-child) {
padding-top: 5px;
}
.tooltip > div img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
}
.tooltip-left:after {
left: 0;
transform: rotate(45deg);
}
.tooltip-right:after {
left: 100%;
transform: rotate(-135deg);
}
#event-calendar .cal-tooltip {
display: none;
width: 20em;
cursor: auto;
}
#event-calendar .cal-tooltip .cal-tooltip-cont {
display: flex;
}
#event-calendar .cal-tooltip .cal-tooltip-cont > div {
flex-basis: 50%;
}
#event-calendar .cal-tooltip .cal-tooltip-cont > div:nth-child(1) {
padding-right: 7.5px;
}
#event-calendar .cal-tooltip .cal-tooltip-cont > div:nth-child(2) {
padding-left: 7.5px;
}
#event-calendar .cal-tooltip .cal-tooltip-cont > div h2,
#event-calendar .cal-tooltip .cal-tooltip-cont > div h3 {
font-size: 0.75em;
}
#event-calendar .cal-tooltip .cal-tooltip-cont > div h2 {
padding-bottom: 5px;
}
#event-calendar .tooltip-left {
left: 4em;
}
#event-calendar .tooltip-right {
right: 4em;
}
演示:CodePen
答案 0 :(得分:2)
绝对定位的元素相对于最近的定位祖先对齐。让那个祖先成为工具提示的容器:
table-cell { position: relative; }
然后,不使用像素进行对齐,而是使用百分比:
.tooltip { top: 50%; transform: translateY(-50%); }
对您的代码进行调整......
工具提示与日期垂直对齐:
此处有更多详情:Element will not stay centered, especially when re-sizing screen