<hr> no parms

  • Thread starter George W. Barrowcliff
  • Start date
G

George W. Barrowcliff

Using a FP2K theme with FP2K.
The <hr> won't accept any length parm, either absolute or percentage. They
are always displayed full length. Is there some way to have them fill in a
percent wide column or do I have to define it as a new gif instead of using
the hr html?

TIA
 
B

Bob

In design view
Highlight the line >
Double click the line to get the properties box >
Change what you want.

bob
| Using a FP2K theme with FP2K.
| The <hr> won't accept any length parm, either absolute or percentage.
They
| are always displayed full length. Is there some way to have them fill in
a
| percent wide column or do I have to define it as a new gif instead of
using
| the hr html?
|
| TIA
|
|
 
M

Murray

Like any block tag, <hr> will fill the width of their container.

You could, however, use CSS to change that -

hr { width:66px; }

If you would put an <hr> into a percent width column, it would match the
width of that column.
 
B

Bob

This won't work?
<hr width="50%" size="3">
or
<hr width="50%" size="3" color="#FF0000" align="left">
Hummmmm....

bob
| Like any block tag, <hr> will fill the width of their container.
|
| You could, however, use CSS to change that -
|
| hr { width:66px; }
|
| If you would put an <hr> into a percent width column, it would match the
| width of that column.
|
| --
| Murray
| --------------
| MVP FrontPage
|
|
| | > Using a FP2K theme with FP2K.
| > The <hr> won't accept any length parm, either absolute or percentage.
| > They are always displayed full length. Is there some way to have them
| > fill in a percent wide column or do I have to define it as a new gif
| > instead of using the hr html?
| >
| > TIA
| >
|
|
 
M

Mike Mueller

Yes, it will. I tested the following code and got 2 nearly
identical lines- only difference was the height

<html><body>
<hr width="50%" size="3" color="#FF0000" align="left">
<hr style="width: 50%; font-size: 3px; color: #FF0000;
text-align: left; ">
</body></html>

Mike
***************************************************

: This won't work?
: <hr width="50%" size="3">
: or
: <hr width="50%" size="3" color="#FF0000" align="left">
: Hummmmm....
:
: bob
message
: : | Like any block tag, <hr> will fill the width of their
container.
: |
: | You could, however, use CSS to change that -
: |
: | hr { width:66px; }
: |
: | If you would put an <hr> into a percent width column, it
would match the
: | width of that column.
: |
: | --
: | Murray
: | --------------
: | MVP FrontPage
: |
: |
: | "George W. Barrowcliff" <[email protected]>
wrote in message
: | : | > Using a FP2K theme with FP2K.
: | > The <hr> won't accept any length parm, either absolute
or percentage.
: | > They are always displayed full length. Is there some
way to have them
: | > fill in a percent wide column or do I have to define
it as a new gif
: | > instead of using the hr html?
: | >
: | > TIA
: | >
: |
: |
:
:
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top