Adjust the Width of an Element Using the width Property
Summary
The width of an element can be specifyed using the width property.
Final Code
<style>h4{text-align:center;}p{text-align:justify;}.links{margin-right:20px;text-align:left;}.fullCard{width:245px;border:1pxsolid#ccc;border-radius:5px;margin:10px5px;padding:4px;}.cardContent{padding:10px;}</style><divclass="fullCard"><divclass="cardContent"><divclass="cardText"><h4>Google</h4><p>Google was founded by Larry Page...</p></div><divclass="cardLinks"><ahref="https://en.wikipedia.org/wiki/Larry_Page"target="_blank"class="links">Larry Page</a><ahref="https://en.wikipedia.org/wiki/Sergey_Brin"target="_blank"class="links">Sergey Brin</a></div></div></div>