Click here to Skip to main content
15,895,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to have a centered div so I can make float right and left pictures at the side of the centered div

What I have tried:

I tried putting an outer div but i didnt solved my problems since I dont want the div to take 100% of the page
Posted

1 solution

If your are use display:inline-block; for div we can't center div.need to use display:block; for and set max-width for div and add margin:0 auto; for div

.center-div{
max-width:500px;
display:block;
margin:0 auto;
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900