I'm having trouble adjusting the width of the text in my code to only fill 80% of the body element. I've tried using both the width property and padding, but neither seems to be working for me at the moment.
Here's the HTML:
<body>
<div id="full">
<h3>
The Concept
</h3>
<p class="paragraph">
text
</p>
<h3>
An Incredibly Lucrative Investment
</h3>
<p class="paragraph">
text
</p>
<h3>
Over 30 Years of Expertise
</h3>
<p class="paragraph">
text
</p>
</div>
</body>
And here's the CSS:
#full{
width: 80%;
margin: auto;
display: inline-block
}