元素定位-引用更高的组件

时间:2018-10-20 11:09:17

标签: angular css3

我有一些具有以下类似结构的Angular应用程序,并且我知道,是否可以使用CSS将divWhichShouldBeInCenterOf-appMainComponent定位在appMainComponent的中心(在文章的结尾)?

appMainComponent
|
 -- internalComponent
    |
    --div
       |
       --component
        |
        --divWhichShouldBeInCenterOf-appMainComponent

CSS

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

1 个答案:

答案 0 :(得分:1)

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

此CSS将元素居中,并将其从页面流中删除。 它将位于最接近的父对象的中心

这意味着,如果divWhichShouldBeInCenterOf-appMainComponent和appMainComponent之间的任何元素的位置不是静态的,它将用作参考的中心。