Results 1 to 2 of 2

Thread: Fieldset and table row alignments

Threaded View

  1. #1

    Thread Starter
    The Devil crptcblade's Avatar
    Join Date
    Aug 2000
    Location
    Quetzalshacatenango
    Posts
    9,091

    Fieldset and table row alignments

    With the following...
    Code:
    <style>
    	fieldset {
    		display : inline;
    	}
    </style>
    
    	<body>
    	
    		<table>
    			<tr>
    				<td rowspan="5">
    					<fieldset>
    						<legend>Test title</legend>
    						<table>
    							<tr>
    								<td>Testing: <input type="text" /></td>
    							</tr>
    							<tr>
    								<td>Testing: <input type="text" /></td>
    							</tr>
    							<tr>
    								<td>Testing: <input type="text" /></td>
    							</tr>
    							<tr>
    								<td>Testing: <input type="text" /></td>
    							</tr>
    						</table>
    					</fieldset>
    				</td>
    			</tr>
    			<tr>
    				<td>Testing: <input type="text" /></td>
    			</tr>
    			<tr>
    				<td>Testing: <input type="text" /></td>
    			</tr>
    			<tr>
    				<td>Testing: <input type="text" /></td>
    			</tr>
    			<tr>
    				<td>Testing: <input type="text" /></td>
    			</tr>
    		</table>
    I get this...


    But what I really need is this...


    Is there a way to preserve the same row alignments outside the fieldset as within?

    Attached Images Attached Images   
    Laugh, and the world laughs with you. Cry, and you just water down your vodka.


    Take credit, not responsibility

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width