visibility in css and javascript
-
When using, say, a
container with visibility:hidden containing multiple, say, stuff stuff2 stuff3
in .css file there is ....span {visibility:visible}; div {visibility:hidden}
I would expect that changing the visibility property of the id d1 to show and hide the spans within that div. Such is not the case. They show or don't show depending only on the span visibility property. Can someone show me how to do this? Larry -
When using, say, a
container with visibility:hidden containing multiple, say, stuff stuff2 stuff3
in .css file there is ....span {visibility:visible}; div {visibility:hidden}
I would expect that changing the visibility property of the id d1 to show and hide the spans within that div. Such is not the case. They show or don't show depending only on the span visibility property. Can someone show me how to do this? Larry -
When using, say, a
container with visibility:hidden containing multiple, say, stuff stuff2 stuff3
in .css file there is ....span {visibility:visible}; div {visibility:hidden}
I would expect that changing the visibility property of the id d1 to show and hide the spans within that div. Such is not the case. They show or don't show depending only on the span visibility property. Can someone show me how to do this? Larryinstead of visibility try
display: none
|display: block
It's frustrating being a genius and living the life of a moron!!!