Home > Net >  Why is doesn't my content fill the full width in devtools responsive size
Why is doesn't my content fill the full width in devtools responsive size

Time:04-14

When visiting enter image description here

CodePudding user response:

picture problem. width: 100vw and padding section .about

solution:

#section {
  overflow: hidden;
}

or

#portrait {
  position: relative;
  left: 0;
  bottom: -0.3em;
  max-width: 100%;
}
  • Related