Tagged Questions
9
votes
4answers
2k views
Cannot add margin to Legend element in Safari & Chrome
I have some pretty straightforward markup:
<form action="">
<fieldset class="compact">
<legend>Member Tools</legend>
<label ...
5
votes
3answers
1k views
Default CSS values for a fieldset <legend>
I'm trying to use a <legend> as a title inside a <fieldset>.
In browsers other than IE, the <legend> is positioned on the top border of the <fieldset>, with the text perfectly ...
4
votes
5answers
384 views
How can I make a fieldset legend-style “background line” on heading text?
I'm attempting to style heading text similar to how your default legend text appears in fieldsets; that is to say, I'd like a strikethrough-like line to come up to, but not through, the text. I can't ...
3
votes
2answers
478 views
legend tag and Chrome
I've looked everywhere but to no avail.
I got a <legend> in a form, which displays as I want in every browsers, except in Chrome. It's like it sits outside of the fieldset, or it's like it ...
3
votes
9answers
4k views
Which CSS tag creates a box like this with title?
I want to create a box like this with title:
Can any one please let me know if there is a default CSS tag to do this? Or do I need to create my custom style?
2
votes
1answer
701 views
Why does Firefox 4 absolutely position fieldset legends differently than other browsers?
Why does Firefox 4 absolutely position fieldset legends differently than other browsers?
Test page:
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta ...
2
votes
3answers
2k views
How to position the legend inside a fieldset with a border?
According to the several references on the web, it is not possible to position a legend. So it is suggested to wrap it with span:
<legend><span>Foo</span></legend>
Then we ...
2
votes
3answers
369 views
Can any HTML element be styled as a fieldset/legend?
Using the display property, HTML elements become interchangeable from a styling perspective. This doesn't seem to be the case for fieldset and legend, however.
Is it possible to style other HTML ...
1
vote
1answer
180 views
Legend not displaying inline
Trying to set the <legend> of a <fieldset> to display: inline; to that the following <span> will follow on inline, but my CSS is having no effect.
Here is a stripped down demo
EDIT
...
1
vote
1answer
208 views
IE7 acronym underline in a fieldset legend
I have an acronym inside of a fieldset/legend:
<fieldset>
<legend>
<acronym>foo</acronym>
</legend>
</fieldset>
In Firefox this gets rendered ...
1
vote
1answer
525 views
How to set fieldset border from legend bottom?
I have fieldset and legend. fieldset border is coming in the middle of the legend like below
But I want border like below
Border line should come below legend.
I am using below css.
.fieldSet
{
...
1
vote
1answer
604 views
basic html css design of a box with image and title
I am not a very good designer. At least not with html and css. I have been using a very simple code like this:
<fieldset style=\"color: #000000; border: 1px solid #000000; width: 225px; ...
0
votes
1answer
47 views
IE issue min margin-top Legends within a Fieldset
Got some IE issue with fieldsets, as you can see in the image is that IE even IE9 doesn't get the margin-top: -26px; Someone how knows the fix?
fieldset{
border: 1px solid #CCC;
border-top-color: ...
0
votes
1answer
117 views
css style fieldset
i'm new to css and i'm trying to figure out a way to incorporate a legend tag as an
header for my page
currently my master page is styled by a field set :
fieldset.field_set_main
{
...
0
votes
2answers
200 views
Make a legend fill up the full width within the fieldset
I would like to have a background for a legend field within a fieldset. And I want it to take up the full width, but only within the fieldset. If I use legend {width: 100%} it will be wider than the ...
0
votes
0answers
287 views
HTML align legend text [closed]
Possible Duplicate:
Default CSS values for a fieldset <legend>
Hi,
I'm having difficulty center aligning the legend text.
Here's what it looks like in browsers other than IE (which ...
0
votes
4answers
131 views
Is there any way to get the full border when adding a border to a fieldset element?
When I add a border to fieldset element and then drag the legend down to work as a heading of sorts, the gap in the fieldset remains.
Is there a way to have the entire border, without adding a ...
0
votes
1answer
580 views
i want to have some cross browser consistency on my fieldsets, do you know how can i do it?
i have this problem with fieldsets... have a look at
http://i.imgur.com/IRrXB.png
is it possible to achieve what i want with css??? believe me, i tried!
as you can see on the img, i just want the ...
0
votes
2answers
660 views
Getting LEGEND tags to wrap text properly
Legend tags are always a nuisance as they don't adhere to a lot of CSS rules.
I'm trying to get the text within a LEGEND tag to wrap using the typical solution of wrapping the text in the LEGEND with ...