Tagged Questions
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
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
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 ...
2
votes
2answers
3k views
Titled frame panel for GWT (using FIELDSET and LEGEND html tags)
I'm trying to create a titled border frame in GWT, which results in this:
This can be done using HTML fieldset and legend tags, such as
<fieldset>
<legend>Connection ...
1
vote
1answer
119 views
Zend Framework / Form / DisplayGroup / SetLegend problem
I have the following code in my 'Default_Form_Registration' class (inside _init method):
$fullname = $this->addDisplayGroup(
array('firstname', 'lastname'),
...
1
vote
2answers
146 views
Border around legend in form does not show
I have a simple CodeIgniter view that simply refuses to show the border around the form even though I have used the fieldset and legend tags.
I don't believe the CSS is overriding this anywhere but ...
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
300 views
Different fieldset view problem between firefox and internet explorer
I am designing a page with divs in fieldset to create an effect like the page in url below. I can not insert the screenshot. Look at the left coloumn of fieldset boxes. If you surf the page with ...
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
55 views
Setting fieldset's “legend” to invsible
Is there another option for the that I can use in C#? I have a condition that needs to be met in order to display one of these Legends. As of now, I don't see how I can set this legend to invisible ...
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
2answers
69 views
Form markup advice, legend with long “question” text
I'm creating an online questionnaire and was looking for some advice on best practice for the markup. Some of the questions are quite long, they are from a third party and can't be changed. I ...
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
132 views
Using the <legend> tag for input
So I've got a form, who's content will change based on a dropdown list of different reports. So the question is, how horrible would it be to include a select box as the legend tag for the fieldset?
...
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
747 views
Wrapping a label element within a legend element
I've never had a reason to put a label element inside of a legend element (never really thought about it or seen it done). But with the design I'm implementing, it's tempting to do so.
Here's what ...