Reputation: 18103
I tried for like an hour now getting it centered really fustrating I dont know how I should get it centered:
Notice that this is to a scrollable jquery plugin (just so you know, so dont complain for the maybe unnecessary css)
Upvotes: 0
Views: 74
Reputation: 1222
Give the container div a display: block; and add margin: 0 auto; to it.
margin: 0 auto;
display: block;
Upvotes: 0
Reputation: 1062
Why is your container display: inline-block
?
If you don't care about this, you can use margin: 0 auto
to accomplish the centering.
Upvotes: 0