Quantcast
Channel: codexguru » html
Viewing all articles
Browse latest Browse all 8

How to do SEO Friendly CSS Hiding ?

$
0
0

Today, every serious company is fighting for higher search engine position. Search engine position depends on thousands factors, but few of them are significant.

<style type="text/css">
	#content {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
</style>

Removes an item from the page, without affecting page flow or causing scrollbars. Much better than display: none; or even visibility: hidden;

The post How to do SEO Friendly CSS Hiding ? appeared first on codexguru.


Viewing all articles
Browse latest Browse all 8

Trending Articles