Home > Article > Web Front-end > Help with CSS
I'm trying to attach text to the left side of brown box. I can't. I don't know what is wrond with the code. Help me, please.
CSS
.hero { position: relative; bottom: 80px; display: flex; justify-content: left; align-items: start; color: rgb(255, 255, 255); background-color: rgb(80, 40, 40); width: 1600px; height: 1955px; margin: auto; border-radius: 60px; } .firstHeroLeft-column { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; align-items: start; margin-top: 180px; margin-left: 40px; justify-content: left; } .middleHeroLeft-column { font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; align-items: start; margin-top: 580px; margin-left: 40px; justify-content: left; } .bottleImg { width: 80%; float: right; } .europeImg { width: 80%; } .trademarkImg { width: 80%; }
HTML
<section>
The above is the detailed content of Help with CSS. For more information, please follow other related articles on the PHP Chinese website!