<!DOCTYPE html>
<html>
<head>
<title>CSS [attr~=value] Selector</title>
<style type="text/css">
a[href~="http://www.way2tutorial.com"] {
background:yellow;
}
</style>
</head>
<body>
<a href="http://www.way2tutorial.com">Way2Tutorial</a>
<br />
<a href="http://webtuts.way2tutorial.com">WebTuts</a>
</body>
</html>