Go Back   Velocity Reviews > Newsgroups > HTML
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Reply

HTML - floating box in CSS

 
Thread Tools Search this Thread
Old 12-01-2004, 08:32 AM   #1
Default floating box in CSS


I am trying to create a floating box right aligned in CSS. Text should
flow around the box (or to the left). The inspiration for the
technique came from http://www.quirksmode.org/. Check the link out for
an example of my objective.

My CSS code is not as elegant though. It creates the border and the
background color, but does not right align the floating box with text
wrapping around. The text size appears the same as the <p> tag; not
90% smaller. The float and clear CSS tag have me a bit confused as
well. Please let me know if you lead me in the right direction. My CSS
follows.

<div class="floater">
<p>.*</p>
</div>

div.floater {
width: 35%;
margin: 8px 8px;
margin-left: 8px;
padding: 10px;
border: 1px solid #6699FF;
background-color: #BBD2FF;
font-size: 90%;
clear: right;
}


I would like to create columns (sort of like tables) in CSS. For
example, have a floating box with two columns and position it wherever
on the page (Right, Left, and Center). I am trying advance my CSS
knowledge & have the basics down; so please avoid retorts like use
tables.



Robert
  Reply With Quote
Old 12-01-2004, 08:41 AM   #2
Els
 
Posts: n/a
Default Re: floating box in CSS

Robert wrote:

> I am trying to create a floating box right aligned in CSS.
> Text should flow around the box (or to the left). The
> inspiration for the technique came from
> http://www.quirksmode.org/. Check the link out for an
> example of my objective.
>
> My CSS code is not as elegant though. It creates the border
> and the background color, but does not right align the
> floating box with text wrapping around. The text size
> appears the same as the <p> tag; not 90% smaller. The
> float and clear CSS tag have me a bit confused as well.
> Please let me know if you lead me in the right direction.
> My CSS follows.
>
> <div class="floater">
> <p>.*</p>
> </div>
>
> div.floater {
> width: 35%;
> margin: 8px 8px;
> margin-left: 8px;
> padding: 10px;
> border: 1px solid #6699FF;
> background-color: #BBD2FF;
> font-size: 90%;


You're missing the most important bit:
float:right;

> clear: right;
> }


--
Els
http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
  Reply With Quote
Old 12-01-2004, 01:43 PM   #3
SpaceGirl
 
Posts: n/a
Default Re: floating box in CSS

Els wrote:
> Robert wrote:
>
>
>>I am trying to create a floating box right aligned in CSS.
>>Text should flow around the box (or to the left). The
>>inspiration for the technique came from
>>http://www.quirksmode.org/. Check the link out for an
>>example of my objective.
>>
>>My CSS code is not as elegant though. It creates the border
>>and the background color, but does not right align the
>>floating box with text wrapping around. The text size
>>appears the same as the <p> tag; not 90% smaller. The
>>float and clear CSS tag have me a bit confused as well.
>>Please let me know if you lead me in the right direction.
>>My CSS follows.
>>
>><div class="floater">
>><p>.*</p>
>></div>
>>
>>div.floater {
>> width: 35%;
>> margin: 8px 8px;
>> margin-left: 8px;
>> padding: 10px;
>> border: 1px solid #6699FF;
>> background-color: #BBD2FF;
>> font-size: 90%;

>
>
> You're missing the most important bit:
> float:right;
>
>
>> clear: right;
>> }

>
>


*waves* stop by for a coffee sometime!

--


x theSpaceGirl (miranda)

# lead designer @ http://www.dhnewmedia.com #
# remove NO SPAM to email, or use form on website #
  Reply With Quote
Old 12-01-2004, 05:33 PM   #4
Els
 
Posts: n/a
Default Re: floating box in CSS

SpaceGirl wrote:

> Els wrote:
>> You're missing the most important bit:
>> float:right;

>
> *waves* stop by for a coffee sometime!


I have no time!

I'll try and come round for Tea after next week

--
Els
http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
  Reply With Quote
Old 12-01-2004, 07:07 PM   #5
mscir
 
Posts: n/a
Default Re: floating box in CSS

SpaceGirl wrote:

> Els wrote:
> > Robert wrote:
> >
> >> I am trying to create a floating box right aligned in CSS.
> >> Text should flow around the box (or to the left). The
> >> inspiration for the technique came from
> >> http://www.quirksmode.org/. Check the link out for an
> >> example of my objective.
> >> My CSS code is not as elegant though. It creates the border
> >> and the background color, but does not right align the
> >> floating box with text wrapping around. The text size
> >> appears the same as the <p> tag; not 90% smaller. The
> >> float and clear CSS tag have me a bit confused as well.
> >> Please let me know if you lead me in the right direction.
> >> My CSS follows.
> >> <div class="floater">
> >> <p>.*</p>
> >> </div>
> >>
> >> div.floater {
> >> width: 35%;
> >> margin: 8px 8px;
> >> margin-left: 8px;
> >> padding: 10px;
> >> border: 1px solid #6699FF;
> >> background-color: #BBD2FF;
> >> font-size: 90%;

> >
> > You're missing the most important bit:
> > float:right;

>

On my IE6 "contents" displays on the left under the "QuirksMode" text,
and when it is clicked on (expanded) it shoves down ALL page content
below the bottom border.

I like this example:

http://www.stunicholls.myby.co.uk/layouts/fixed.html

Mike
  Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump