Make the child full width, going outside the parent container size.
.child {
width: 100vw;
position: relative;
left: calc(-50vw + 50%);
}
Make the child 30% wider than the parent container.
.child {
width: 130%;
position: relative;
left: calc(-65% + 50%);
}