开发者

CSS Problem Simple

开发者 https://www.devze.com 2023-01-29 20:13 出处:网络
I have absolutely no idea why this isn\'t working. I\'m trying to align the navigation and content of a website, navigation is fine at the moment.

I have absolutely no idea why this isn't working. I'm trying to align the navigation and content of a website, navigation is fine at the moment.

Problem: Whatever I change in the CSS for content does not affect the class in the other page.

<div class='content'>
 aslkdhal;kshl;kasdkjasdhkjlashkjashdkjalsdklajsd
</div>

div.content{
  margin-left: auto;
  margin-right: auto;
}

I'm sure it'开发者_StackOverflow社区s simple. Thank you in advance.


You're right, it is simple. You just need to specify .content's width.

margin-left: auto;
margin-right: auto;

centers the div itself, not the content.

0

精彩评论

暂无评论...
验证码 换一张
取 消