![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
The only problem is forms with an input tag with type=image. These images are not blocked. There are test cases at the bottom of this page... http://htmlhelp.com/feature/art3c.htm Is there any way to block these through css? Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. |
#3
| |||
| |||
|
|
Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. |
#4
| |||
| |||
|
|
William Krick wrote: Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. You don't need a style for that. Just use your browser's option not to display images. |
#5
| |||
| |||
|
|
William Krick wrote: The only problem is forms with an input tag with type=image. These images are not blocked. There are test cases at the bottom of this page... http://htmlhelp.com/feature/art3c.htm Is there any way to block these through css? Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. input[type="image"] { display: none ! important; } |
#6
| |||
| |||
|
|
On Dec 10, 12:34 pm, Harlan Messinger hmessinger.removet... (AT) comcast (DOT) net> wrote: William Krick wrote: Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. You don't need a style for that. Just use your browser's option not to display images. I could do that, but it takes a minimum of 5 clicks, plus a browser refresh to toggle the images on and off. With a stylish stylesheet, I can do it with 2 clicks and no refresh, plus, I get the black & white look that I want at the same time. There used to be a firefox plugin that added an image toggle button to the toolbar, but it doesn't work in the current version of firefox. |
#7
| |||
| |||
|
|
William Krick wrote: The only problem is forms with an input tag with type=image. These images are not blocked. There are test cases at the bottom of this page... http://htmlhelp.com/feature/art3c.htm Is there any way to block these through css? Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. input[type="image"] { display: none ! important; } Please can you give me a link to some doc where this syntax is defined? I mean |
#8
| |||
| |||
|
|
Harlan Messinger wrote: William Krick wrote: The only problem is forms with an input tag with type=image. These images are not blocked. There are test cases at the bottom of this page... http://htmlhelp.com/feature/art3c.htm Is there any way to block these through css? Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. input[type="image"] { display: none ! important; } Please can you give me a link to some doc where this syntax is defined? I mean syntax element[type=....] I have some docs for CSS1 and CSS2 but I never seen this. Thanks. |
#9
| |||
| |||
|
|
Petr Vileta wrote: Harlan Messinger wrote: William Krick wrote: The only problem is forms with an input tag with type=image. These images are not blocked. There are test cases at the bottom of this page... http://htmlhelp.com/feature/art3c.htm Is there any way to block these through css? Ideally, I want to show the alt text in place of the image but simply blocking the image would be an improvement. input[type="image"] { display: none ! important; } Please can you give me a link to some doc where this syntax is defined? I mean syntax element[type=....] I have some docs for CSS1 and CSS2 but I never seen this. Thanks. http://www.w3.org/TR/CSS21/selector....bute-selectors IE6 doesn't recognize these but IE7 and Firefox 2 do. |
![]() |
| Thread Tools | |
| Display Modes | |
| |