User CP
New Posts
Today's Posts
Subscribed Threads
FAQ
Advanced Search
Forum Home
Articles
Contests
Marketplace
Site of The Month
Register Now!
Web Design Forums
»
Programming Help
»
HTML and CSS Help
» display error in css
HTML and CSS Help
Having problems with these web design scripting? Ask here.
display error in css
Welcome to the
Web Design Forums
- the number one community for web designers and programmers alike!
You are currently viewing our boards as a guest which gives you
limited access
to view most discussions and access our other features. By joining our
free
community you will have access to post topics, ask questions, enter your site in our 'Site of the month' competition, get a free website review, access articles and more!
Registration takes less than a minute and is 100% free so please,
join Web Design Forums today
!
If you have any problems with the registration process or need to contact us, please
click here
.
Site of the Month Nominations
ENTER YOUR SITE NOW!
LinkBack
Thread Tools
February 8 '10, 03:26 AM (#
1
)
palani
New Member!
Join Date:
February 2010
Posts:
1
display error in css
the below code display content as center in firefox .but not in IE .i dont know what is the problem pls help
<html>
<head>
<style type="text/css">
body
{
padding:0;
margin:0;
background:#eee;
}
#container
{
width:900px;
margin:0 auto;
background:#ccc;
}
#head{height:250;background
range;}
</style>
</head>
<body>
<div id="container">
frgts
<div id ="head">
asrgrtuyt67
</div>
</div>
</body>
</html>
February 8 '10, 09:17 AM (#
2
)
mlseim
WDF Staff
Join Date:
April 2004
Location:
Cottage Grove, Minnesota
Posts:
3,401
body
{
padding:0;
margin:0 auto;
background:#eee;
width:900px;
text-align:center;
}
#container
{
width:900px;
margin:0 auto;
background:#ccc;
text-align:left;
}
Web Design Forums
»
Programming Help
»
HTML and CSS Help
Bookmarks
Digg
del.icio.us
StumbleUpon
Google
«
Previous Thread
|
Next Thread
»
Currently Active Users Viewing This Thread: 1
(0 members and 1 guests)
Thread Tools
Show Printable Version
Email this Page
Posting Rules
You
may not
post new threads
You
may not
post replies
You
may not
post attachments
You
may not
edit your posts
BB code
is
On
Smilies
are
On
[IMG]
code is
Off
HTML code is
Off
Trackbacks
are
On
Pingbacks
are
On
Refbacks
are
On
Forum Rules
Similar Threads
Thread
Thread Starter
Forum
Replies
Last Post
How can I display html and css code on a page?
mehashi
HTML and CSS Help
2
May 26 '09
09:02 AM
CSS Link Images Rollover Display Problems
aburningflame
HTML and CSS Help
4
January 13 '09
01:11 AM
How To Structure CSS to Display Correctly in IE
jrucco
HTML and CSS Help
5
June 27 '08
09:26 AM
Need someone who is great at Firexo/IE CSS discrepency issues...
kennedrw
HTML and CSS Help
1
November 14 '07
03:21 AM
Problems with the display of my main text area in css
ShaunMac
HTML and CSS Help
4
August 23 '06
04:38 PM
User Infomation
User Name
Password
Remember Me?
Site Of The Month
Ticket Cake
Ticket Cake is a drupal based event ticketing platform. It features that ability to browse events and share them.
Nominate Your Site Now!
Advertisement
Latest Articles
Design Imageless Rounded Corners with CSS3
- by
RickM
Designing a Professional Website from Scratch
- by
alligatortek
9 Free Web Design Tools That All Web Designers Should Have
- by
redefyned1
PHP - The Basics
- by
Danny[MLWA]
CSS guide to horizontally and vertically centering text and page elements
- by
bfsog
Advertisement
Partner Links
WolfCMS - Simple & Free
Domain Registration & Hosting
Web Hosting Service
Unlimited Hosting Under $5/mo!
Advertise on WebDesignForums
All times are GMT -4. The time now is
02:35 AM
.
Advertising
-
About Us
-
Web Design Forums
-
Archive
-
Privacy Statement
-
Terms of Service
-
Top
WebDesignForums.net is Copyright © 2010
RikeMedia
.
LinkBack
LinkBack URL
About LinkBacks
Bookmark & Share
Digg this Thread!
Add Thread to del.icio.us
Bookmark in Technorati
Furl this Thread!
SEO by
vBSEO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163