有没有办法让子div的背景扩展到父div之外?

时间:2019-03-29 20:52:03

标签: html css background background-color

<div id = 1>
   <div id = 2>
     //I want to expand the background of this div outside of the bounds 
     //of is parent
   </div>
</div>

所以我在另一个div内嵌套了一个div。父div与屏幕中心对齐。我希望孩子能够拥有一个占用屏幕宽度的背景,而无需更改内部内容的位置。这样做的最佳方法是什么?

2 个答案:

答案 0 :(得分:0)

您可以使用负边距来实现:

input = 'g'

exceptions = []

try:
    _ = int(input)
    if input < 5555 or input > 11111:
        exceptions.append(ValueError('error1'))
except ValueError:
    exceptions.append(ValueError('error'))
    exceptions.append(ValueError('error1'))

if exceptions != []:
    raise Exception(exceptions)

结帐我快速完成的JSFiddle: https://jsfiddle.net/qcsra5yg/1/

答案 1 :(得分:0)

您可以使用ng-template来实现。

html

::after

css

<div class="parent">
  <div class="child">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Magni, in.</div>
</div>

EXAMPLE

EXAMPLE 2