CSS底部0与div外部对齐

时间:2017-08-02 12:13:28

标签: html css

当我尝试使用position: absolutebottom: 0将div修复到包装div的底部时,div与div的外部底部对齐,最后位于其下方和外部。这意味着如果包装器延伸到页面的底部,我的div的子项甚至都不可见。有什么想法会导致这种情况吗?

3 个答案:

答案 0 :(得分:0)

如果我理解你的意思,请试试这个。

.wrapper {
   position: relative;
}

.wrapper div {
   position: absolute;
}

感谢。

答案 1 :(得分:0)

您必须将position: relative提供给父div和包装器 应该给position: absolute

答案 2 :(得分:0)

只需将父级 Intent myIntent = new Intent(context, BroadcastReceiver.class); pendingIntent = PendingIntent.getBroadcast(context, 0, myIntent, 0); AlarmManager alarmManager = (AlarmManager) context.getSystemService(ALARM_SERVICE); alarmManager.setExactAndAllowWhileIdle(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + difference, pendingIntent); 设置为您要调整该子级

的位置即可



position: relative;

.parent{
    width: 600px;
    height: 400px;
    background: grey;
    position: relative;
}

.child{
    width: 200px;
    height: 200px;
    background: blue;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    color:white
}