Answers for "center things with css"

CSS
0

center things with css

<style>
#para {
    margin-left: auto;
    margin-right: auto;
    width: 8em
}
</style>
<P id="para">This is a paragraph </p>
Posted by: Guest on March-30-2022

Browse Popular Code Answers by Language