|
Posted by Jonathan N. Little on 12/08/05 01:46
Moneypenny wrote:
> Hello,
>
> I've got an editable <span> in a website page.
>
> But FireFox don't show anything.
>
> Is there a solution?
>
> <span id="story_new" contentEditable="true"
^^MS proprietary
style="{text-align:left;
^ nix the '{}' in inline styles
> width:200px; height:200px; border:buttonface 1px solid; border-color:black;
^^ what the hell is 'buttonface?
border: [<border-width>||<border-style>||<'border-top-color'>] | inherit
border-styles are:
none = No border; the border width is zero.
hidden = Same as 'none', except in terms of border conflict resolution
for table elements.
dotted = The border is a series of dots.
dashed = The border is a series of short line segments.
solid = The border is a single line segment.
double = The border is two solid lines. The sum of the two lines and the
space between them equals the value of 'border-width'.
groove = The border looks as though it were carved into the canvas.
ridge = The opposite of 'groove': the border looks as though it were
coming out of the canvas.
inset = The border makes the box look as though it were embedded in the
canvas.
outset = The opposite of 'inset': the border makes the box look as
though it were coming out of the canvas.
don't see any 'buttonface' in the list.
> overflow-y:auto; overflow-x:auto;}">
overflow-y & overflow-x are CSS3, FF1.5 supports, but overflow has wider
support since you want both directions treated the same make:
'overflow: auto'
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com
Navigation:
[Reply to this message]
|