Jump to content

Lost on how to align


hollys84

Recommended Posts

So this is what i have so far

 

<div class="cleared"></div></div>

                                                 

 

<div class="container08">

<h2>Small</h2>

<p>Here comes your content</p>

</div>

<div class="container08">

<h2>Medium</h2>

<p>Here comes your content</p>

</div>

<div class="container08">

<h2>Large</h2>

<p>Here comes your content</p>

</div>

 

my problem is i cant get it to align in the center of my page...... Anyone have any ideas they can give me?    Much appreciated  :D

Link to comment
Share on other sites

What do you want aligned?

 

Usually if you want to center h2

 

.container08 h2{text-align: center;} on the style sheet or in the header

 

or

 

<h2 style="text-align: center;">small</h2>

 

and ...

 

added

 

if you want to center container08

 

.container08 {

width: 50%;  /* or what ever*/

margin: 0 auto;

}

 

 

Link to comment
Share on other sites

.container08 {

background-color: #666;

float: left;

height: 115px;

width: 180px;

border-radius: 200px;

text-align: center;

overflow: hidden;

border: 10px solid #03C;

margin: 0px;

padding-top: 65px;

padding-right: 0px;

padding-bottom: 0px;

padding-left: 0px;

box-shadow: inset 0px 10px 5px #111, inset 0px -5px 5px #111, 0px 3px 10px #FFF;

}

.container08 p {

color: #FFF;

margin: 0px;

text-shadow: 0px -1px 1px #000, 0px -1px 1px #000;

}

.container08 h2 {

font-size: 24px;

color: #03C;

margin: 0px;

text-shadow: 0px -2px 0px #006;

}

 

 

Thats the css for it basically its three circle containers that at the moment are to the far left i wanna move the all three to the center without putting them on seperate lines if that makes any sense  :shrug:

Link to comment
Share on other sites

If your going to do stuff like this get and use firefoxes firebug, firebug color codes the divs, margins, borders and padding on the web page so you can see the styles, it will tell you what the css file name is, the name of the style, what line the style is coming from and the inheritance if any. I think chrome does the same thing.

Link to comment
Share on other sites

@holly, DO NOT use what everyone else has been saying. Just use <center> and </center>

 

<center> is deprecated, and alone wouldn't achieve what the OP is after.

 

You're much better off using display: inline-block on each of the .container08 elements, with a parent element containing text-align: center. Unfortunately this isn't supported in older browsers, so there's a few little hacks you need to include.

 

Created this to demonstrate: http://jsfiddle.net/EcPcw/

 

Ensure the last four properties remain in that order.

Link to comment
Share on other sites

  • 3 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.