473,407 Members | 2,359 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

New or known IE 6 bug?

Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html. Does
anyone know why IE 6 shifts the horizontal bar to the left when it follows a
paragraph that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting padding-bottom
to 0?

TIA,
Boris
Jul 20 '05 #1
10 1984
Boris wrote:
Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html. Does
anyone know why IE 6 shifts the horizontal bar to the left when it follows a
paragraph that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting padding-bottom
to 0?


Looks exactly the same in all browsers I tested (IE6, Mozilla, Opera).
What exactly do you think should be different??
Matthias

Jul 20 '05 #2

Matthias Gutfeldt wrote:
Boris wrote:
Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html. Does
anyone know why IE 6 shifts the horizontal bar to the left when it follows a
paragraph that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting padding-bottom
to 0?

Looks exactly the same in all browsers I tested (IE6, Mozilla, Opera).
What exactly do you think should be different??


Strange, in my IE6 it looks like Boris said it should. The bar was
aprox 70 percent long from the left, in Mozilla 100 percent.

--
/Arne
http://w1.978.telia.com/~u97802964/
DEFAULT - defect in manufacture
Jul 20 '05 #3
Arne wrote:
Matthias Gutfeldt wrote:
Boris wrote:
Please point your IE 6 to
http://www.highscore.de/ie/ie6cssbug.html. Does anyone know why IE
6 shifts the horizontal bar to the left when it follows a paragraph
that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting
padding-bottom to 0?

Looks exactly the same in all browsers I tested (IE6, Mozilla,
Opera). What exactly do you think should be different??


Strange, in my IE6 it looks like Boris said it should. The bar was
aprox 70 percent long from the left, in Mozilla 100 percent.


Really strange. I added my IE version and a screenshot.
Matthias, please see http://www.highscore.de/ie/ie6cssbug.html again.

Boris
Jul 20 '05 #4
Boris wrote:
Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html.
Does anyone know why IE 6 shifts the horizontal bar to the left when
it follows a paragraph that is put into a div-element which has a
left-border and padding-bottom set to greater than 0?

[snip]

For interest, I notice that it is shortened by 300 pixels. (That is, on my IE
6, it is 310 pixels from the RHS, whereas the other end is only 10 pixels from
the LHS). This appears to be consistent over several viewport widths.

And, of course, your green border is 300 pixels wide! And, guess what? Change
the border to 500px, and the line becomes 510 pixels from the RHS.

Spooky. But I have no idea what is happening. It is OK on Firefox 0.8,
Netscape 7.1, Opera 7.23, & IE 5. That latter is very suggestive!

Try putting a border round the <p>, for example:
p {
border: 1px dotted blue;
}
You will find that the <hr> gets closer to the RHS!

Bug, yes. New, don't know.

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/
Jul 20 '05 #5
> Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html. Does
anyone know why IE 6 shifts the horizontal bar to the left when it follows a
paragraph that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?


Actually, my IE6 (WinXP) does what he should do. However, my IE 5.x does
not. But I regret not having a solution for that. Maybe a wrapper-DIV helps.

Jul 20 '05 #6
Boris wrote:
Please point your IE 6 to http://www.highscore.de/ie/ie6cssbug.html.
Does anyone know why IE 6 shifts the horizontal bar to the left when
it follows a paragraph that is put into a div-element which has a
left-border and padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting
padding-bottom to 0?


Seems like I rediscovered a bug which others call "Magik Creeping Text":
http://www.positioniseverything.net/explorer/creep.html

However there seems to be an easy fix. I added this CSS line:
* html div { height:1%; }

This line makes use of the Holly Hack
(http://www.positioniseverything.net/...pe-floats.html) and the
Star html Selector bug
(http://www.info.com.ph/~etan/w3panth...rhtmlbug.html). Bugs
everywhere ...

Boris
Jul 20 '05 #7
Boris wrote:
Arne wrote:
Matthias Gutfeldt wrote:
Boris wrote:
Please point your IE 6 to
http://www.highscore.de/ie/ie6cssbug.html. Does anyone know why IE
6 shifts the horizontal bar to the left when it follows a paragraph
that is put into a div-element which has a left-border and
padding-bottom set to greater than 0?

Any idea how to move the horizontal bar back without setting
padding-bottom to 0?
Looks exactly the same in all browsers I tested (IE6, Mozilla,
Opera). What exactly do you think should be different??


Strange, in my IE6 it looks like Boris said it should. The bar was
aprox 70 percent long from the left, in Mozilla 100 percent.

Really strange. I added my IE version and a screenshot.
Matthias, please see http://www.highscore.de/ie/ie6cssbug.html again.


Doh! After a second check, I realize this is what I get too. Sorry, I
guess I didn't pay attention. Blame it on acute hunger, it was just
before lunch :-).
Matthias

Jul 20 '05 #8
Try center tag
Jul 20 '05 #9
On 26 Jun 2004 23:46:32 GMT, Halfwedge <ha*******@aol.com> wrote:
Try center tag


What is this, an ad?

Try quoting for context, so we don't have to read back into the thread
(which your post might be separated from on some people's NG servers).

Second, the center element is deprecated in the DTD the OP used in the
example, and besides has no effect whatsoever.

I see the error on W98 on IE6. The hack Boris mentioned works fine. But I
might caution you, don't get hung up on the presentation of hr in your
document. hr is an odd little fellow and usually the best thing to do with
it is display: none; and use a border on a div instead.
Jul 20 '05 #10
dryven
1
No idea why either.

padding-bottom causes a shift (to the left) in the paragraphs each time after the style has been used.

effectively, after using the style a few times, your text just disappears from the screen.

coding for ie browsers are really a pain.

reported for ie version: 6.0.2800.1106
Jul 27 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: K. Shier | last post by:
when attempting to edit code in a class file, i see the bug "Visual Basic ..NET compiler is unable to recover from the following error: System Error &Hc0000005&(Visual Basic internal compiler...
18
by: Philipp Lenssen | last post by:
I want to write a third installment of "Little Known HTML Facts"*. I would appreciate your input here. For one thing, I would like to remember what exactly those proprietary icons were you could...
0
by: Graham McDonald via .NET 247 | last post by:
I have an classic object model, base class with two or moresubclasses. When I know exactly that there is only these twoclasses then I have no problem serilaising and deserialsing theinstances....
0
by: Anurag | last post by:
Hi, I understand that the dbm cfg parameter "DISCOVER" controls whether Search or Known discovery is applicable. Additionally, Search discovery provides a superset of Known discovery. I completely...
1
by: Hul Tytus | last post by:
comp.lang.c converting a point known by 4 distances to xyz coordinates? Amongst all the librarys on the internet there is certainly source for a routine that converts a point known by 4...
1
by: Elmo Watson | last post by:
Just switched from Beta2 to RC1 - I get this error for all the Ajax stuff (UpdatePanel, UpdateProgress, etc) as well as many others any time I open HTML source view on any page in the site. The...
2
by: waylonflinn | last post by:
I'm looking for a way to invoke methods with an arbitrary number of parameters of arbitrary type from within a single method, when those parameters are known at the time of invocation of the...
0
by: Chris Bordeman | last post by:
Hi all. My WCF service accepts a base interface type I call 'IGenericRequest' as a *parameter*. I have been able to accomplish this using NetDataContractSerializer. But then it gets sticky...
14
by: Hendrik van Rooyen | last post by:
Hi, I am surprised that it took me so long to bloody my nose on this one. It must be well known - and I would like to find out how well known. So here is a CLOSED BOOK multiple choice...
5
by: Jameson | last post by:
Hi, I have a list of known colours, generated using: Dim colorNames As New System.Collections.Generic.List(Of String) For Each known As KnownColor In .GetValues(GetType(KnownColor)) Dim...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.