(Hope this is the right place to post this.)

I ran across a CSS quirk. When a fieldset is placed inside a column layout the fieldset's default padding will get trumped by the column layout's padding value. This causes the legend and collapse tool to be slightly offset in all things not IE. (Note: IE happens to have a browser specific class in ext-all that sets the fieldset padding more specifically.)

Here is a quick snippet of code that should show what I'm talking about:

<body>
		
    <form id="form1" runat="server">
     <ext:ResourceManager runat="server" ></ext:ResourceManager>
     <ext:Viewport id="vp" runat="server">
			<Items>
				<ext:Panel id ="Panel1" Title="Column Layout" runat="server">
					<Items>
						<ext:ColumnLayout id="cl" runat="server">
							<Columns>
								<ext:LayoutColumn runat="server" ColumnWidth=".75" >
									<Items>
										<ext:Fieldset id="fs1" runat="server" 
											Title="A Fieldset in ColumnLayout" 
											Html="<b>HELLO WORLD</b><br/>"
											Collapsible = true
											/> 
									</Items>
								</ext:LayoutColumn>
								<ext:LayoutColumn runat="server" ColumnWidth=".25" >
								<ext:Panel id="blank" runat="server" 
											Title="A Blank Panel" 
											Html="<br/>"
											/> 
								</ext:LayoutColumn>
							</Columns>
						</ext:ColumnLayout>
						</Items>
				</ext:Panel>
				<ext:Panel id ="pn2" Title="Not a Column Layout" runat="server">
					<Items>
						<ext:Fieldset id="fs2" runat="server" 
									Title="A Fieldset NOT in ColumnLayout" 
									Html="<b>HELLO WORLD</b><br/>"
									Collapsible = true
									/>
					</Items>
				</ext:Panel>
			</Items>
     </ext:Viewport>
    </form>
</body>
For my purposes, I can always add another more specific css class to put the padding back on the fieldset, but it seems to me that the column layout shouldn't be doing this in the first place(?). Any thoughts?