Initially, row 3 division 1 and contents are visible.
When a button is clicked, division 1 and contents are supposed to be hidden
from view. However, division 1 is hidden, but not the contents.
Nothing in the inner divisions is styled to be blocked.
In row 2, the hidden divisions shows up just fine as it is supposed to.
I always thought that what ever was inside the parent division was supposed
to be hidden when the parent was hidden. What tricks or methods are there
to make sure the content will be hidden as desired?
Perhaps you'd be so kind as to post a URL...?
Visibility is inherited, but descendents of hidden things can still be
visible if you set them back to visible.
e.g. with
<div style="visibility: hidden">
<div style="visibility: visible">
you'll see the inner div.
But I doubt that's what's what happening here. My money is on broken
HTML resulting in a DOM tree in which the unexpectedly visible element
has ended up not, as you intended, a descendent of the one you set to
visibility: hidden.
> My money is on broken HTML
So you're familiar with RtS's work then? ;-)
He's showed this 'quiz' page before, but I don't remember the URL.
--
-bts
-Four wheels carry the body; two wheels move the soul
Ben and Beauregard,
It can be a regression bug in IE 8.
Descendants of a "visibility: hidden" ancestor element must be visible
if they have "visibility: visible"
http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/#bug235
No broken HTML here:
(inline level descendants tested only; I don't know about block-level
descendants)
http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/visibility-descendants-visibility-hidden.html
season's greetings, Gérard
--
Internet Explorer 7 bugs: 185 bugs so far
http://www.gtalbot.org/BrowserBugsSection/MSIE7Bugs/
Internet Explorer 8 bugs: 58 bugs so far
http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/
> Visibility is inherited, but descendents of hidden things can still be
> visible if you set them back to visible.
>
> e.g. with
>
> <div style="visibility: hidden">
> <div style="visibility: visible">
There is also the same kind of bug regression in IE 8 involving
visibility: inherit:
visibility: inherit applied to command button fails in IE 8
http://www.gtalbot.org/BrowserBugsSection/MSIE8Bugs/#bug228
found I had an extra </div> where it didn't belong, which caused the block
to end prematurely.
Why no url? because runbasic is an application. So even if you did see the
page sourcecode, you wouldn't understand it. Like with php, you only see
the end results.
>found I had an extra </div> where it didn't belong, which caused the block
>to end prematurely.
>
>Why no url? because runbasic is an application. So even if you did see the
>page sourcecode, you wouldn't understand it. Like with php, you only see
>the end results.
Isn't that HTML?
--
Martin Jay
Back the Ban: <http://www.backtheban.com/>
League Against Cruel Sports: <http://www.league.org.uk/>
>Why no url? because runbasic is an application. So even if you did see the
>page sourcecode, you wouldn't understand it. Like with php, you only see
>the end results.
It's only the "end results" (i.e. the HTML delivered to the browser) that
we're interested in anyway.
You've already been told this numerous times in the last few months, but I'll
say it again: you'd have a much better chance of getting help with your
problems if you'd post the URL of a page that demonstrates the trouble.
But I did guess what his problem was without a URL.
RunBASIC? :)
> On Tue, 29 Dec 2009 14:20:57 -0600, Ben C <spam...@spam.eggs> wrote:
>>On 2009-12-29, Doug Miller <spam...@milmac.com> wrote:
>
>>>You've already been told this numerous times in the last few months, but I'll
>>>say it again: you'd have a much better chance of getting help with your
>>>problems if you'd post the URL of a page that demonstrates the trouble.
>
>>But I did guess what his problem was without a URL.
>
> RunBASIC? :)
PEBKAC. :-)
sherm--
> On 2009-12-29, Doug Miller <spam...@milmac.com> wrote:
> > In article <127yblcjvs56t.d...@40tude.net>, richard
> > <mem...@newsguy.com> wrote:
> >
...
> > You've already been told this numerous times in the last few months, but
> > I'll
> > say it again: you'd have a much better chance of getting help with your
> > problems if you'd post the URL of a page that demonstrates the trouble.
>
> But I did guess what his problem was without a URL.
And it is a nice game! I try it myself with mixed success now and
then... Els - remember Els? - was brilliant at it. You are no slouch
either! We should have a corner of alt.html where it is *officially*
played - like newspapers have cryptic crosswords...<g>
--
dorayme
> Ben C <spam...@spam.eggs> wrote:
>> Doug Miller <spam...@milmac.com> wrote:
>>> You've already been told this numerous times in the last few months,
>>> but I'll say it again: you'd have a much better chance of getting
>>> help with your problems if you'd post the URL of a page that
>>> demonstrates the trouble.
Naturally, a quick trip to the validator would have answered his
question. ;-)
>> But I did guess what his problem was without a URL.
>
> RunBASIC? :)
http://en.wikipedia.org/wiki/Run_BASIC
It's a sort-of tool for developing web page output by typing BASIC style
commands. It's proprietary, and you need Windows. RtS discovered it a
few months back, and in fact came into these groups extolling its
virtues. It appears he's gone back to it after his short foray into PHP
failed.