Hello guys does anybody know how to make images and text invisible in HTML/CSS. I want the image or text to load up but I do not want them to be visible. Any special attibutes?![]()
Hello guys does anybody know how to make images and text invisible in HTML/CSS. I want the image or text to load up but I do not want them to be visible. Any special attibutes?![]()
Have you tried style="visibility:hidden; in the <img> tag? So something like <img src="http://www.someplaceinagalaxyfarfaraway.com" style="visibility:hidden;">
Reverse IP Check ಠ_ಠ Proxy Sites
<?php if ($youask == 'stupid question') { echo ('stupid answer'); } ?>
Text can be done the same way with a div tag.
.hide { display: none; }
or
.hide { visibility: hidden; }
And just wrap it around the text you want to hide
Aus
would it be easier to wrap a div around all of them and then hide that div using something like
<div style:visibility="hidden"></div>
or even with javascript
Seems if something like that would work then it would be less work
Reverse IP Check ಠ_ಠ Proxy Sites
<?php if ($youask == 'stupid question') { echo ('stupid answer'); } ?>
Bookmarks