Click here to Skip to main content
16,008,750 members
Home / Discussions / Web Development
   

Web Development

 
QuestionApache server not running PHP scripts Pin
C0d3_P03t11-Oct-05 2:14
C0d3_P03t11-Oct-05 2:14 
AnswerRe: Apache server not running PHP scripts Pin
C0d3_P03t11-Oct-05 2:58
C0d3_P03t11-Oct-05 2:58 
QuestionStarter KIT Problem Pin
Micu Radu11-Oct-05 2:01
Micu Radu11-Oct-05 2:01 
QuestionHTTP File upload Pin
alex.barylski10-Oct-05 7:43
alex.barylski10-Oct-05 7:43 
AnswerRe: HTTP File upload Pin
alex.barylski10-Oct-05 8:01
alex.barylski10-Oct-05 8:01 
QuestionList User Domains using GetObject Pin
drhanes10-Oct-05 5:25
drhanes10-Oct-05 5:25 
QuestionDIV Alignment and Spaces Pin
Brendan Vogt9-Oct-05 22:02
Brendan Vogt9-Oct-05 22:02 
AnswerRe: DIV Alignment and Spaces Pin
Guffa9-Oct-05 22:59
Guffa9-Oct-05 22:59 
First of all, make sure that you have a doctype tag as the first line in the document. You can't put an xml tag in the document, or IE will ignore the doctype tag. If you don't have a doctype, the browser will work in 'Quirks Mode', which will make the browser interpret the html code as browser specific as possible, e.g. like ancient versions of the browser would interpret it.

If you have padding and borders on the elements, their size is added to the specified size, so if you specify a width of 50% and have padding and/or borders, the total width will be more than 50%.

There is a bug in IE where it in some cases will need three extra pixels in the width of the containing element for the elements inside it to fit.

For the customer, put each customer in an element, and each property in an element inside it. Quite similar to how you would do it in xml.
<div class="Customer">
	<div class="FirstName"></div>
	<div class="LastName"></div>
	<div class="Email"></div>
</div>

Now you can format this any way you like, using css. Example:
.Customer { clear: both; height: 20px; }
.Customer div { float: left; }
.Customer .FirstName { width: 100px; }
.Customer .LastName { width: 100px; }
.Customer .Email { width: 150px; }


---
b { font-weight: normal; }

QuestionIE toolbars' positioning problem Pin
Hans Ruck9-Oct-05 21:07
Hans Ruck9-Oct-05 21:07 
QuestionJavascript problem, please help Pin
Tesic Goran9-Oct-05 9:33
professionalTesic Goran9-Oct-05 9:33 
AnswerRe: Javascript problem, please help Pin
Edbert P13-Oct-05 18:00
Edbert P13-Oct-05 18:00 
QuestionClearing the Screen Pin
moggers697-Oct-05 17:35
moggers697-Oct-05 17:35 
GeneralRe: Clearing the Screen Pin
Guffa8-Oct-05 1:03
Guffa8-Oct-05 1:03 
AnswerRe: Clearing the Screen Pin
moggers698-Oct-05 16:35
moggers698-Oct-05 16:35 
GeneralRe: Clearing the Screen Pin
moggers698-Oct-05 18:37
moggers698-Oct-05 18:37 
GeneralRe: Clearing the Screen Pin
Guffa9-Oct-05 2:04
Guffa9-Oct-05 2:04 
AnswerRe: Clearing the Screen Pin
moggers6912-Oct-05 17:28
moggers6912-Oct-05 17:28 
AnswerRe: Clearing the Screen Pin
T1TAN11-Oct-05 2:47
T1TAN11-Oct-05 2:47 
AnswerRe: Clearing the Screen Pin
moggers6912-Oct-05 17:25
moggers6912-Oct-05 17:25 
GeneralRe: Clearing the Screen Pin
T1TAN12-Oct-05 20:56
T1TAN12-Oct-05 20:56 
AnswerTHANKS 2 ALL Pin
moggers6920-Oct-05 1:30
moggers6920-Oct-05 1:30 
QuestionHow to Highlight the items in listbox in javascript? Pin
bin_bin17-Oct-05 9:04
bin_bin17-Oct-05 9:04 
QuestionError using the Web Site Administration Tool Pin
Anonymous7-Oct-05 7:03
Anonymous7-Oct-05 7:03 
QuestionUnable to script library Pin
Chiari6-Oct-05 17:56
Chiari6-Oct-05 17:56 
AnswerRe: Unable to script library Pin
Gavin Jeffrey6-Oct-05 22:40
Gavin Jeffrey6-Oct-05 22:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.