replace - How to use the new image replacement technique by Scott Kellum -
i practicing using various image replacement methods , came across couple articles discussing new, supposedly more efficient method scott kellum. original website article regarding new method it seems , practice using it, not sure html , css should be. in example below, have h1, example logo text inside. added class of .hide-text h1 , styled css. used photoshop logo image made , set background image....the image has width of 203px , height of 57px. question 1: when tested code in browser, seems working fine, usage of mr.kellum's image replacement technique correct? question 2: should target h1 in css , declare width , height or okay include width , height directly in hide-text class in example below? <style> .hide-text { background: url(images/mylogo.jpg) 0 0 no-repeat; text-indent: 100%; white-space: nowrap; overflow: hidden; width: 203; height: 57px; } <body> <h1 class="hide-text">mylogo text</h1> ...