Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialYeni Elder
6,223 PointsExpanding a div box infinitely, only to the right side
Any ideas on how to expand 2 white bars behind my h2 all the way to the right side of the screen?
1 Answer
datavet
2,376 PointsIf you add "margin-right: value" to you h2 in css, I believe this will give the effect you are looking for. I tried it and it worked.
h2 {
font-style: italic;
font-weight: 600;
color: #4e3fc0;
line-height: 1.5;
margin-right: 40em;
}