<!DOCTYPE html>
<html>
<head>
<title>CSS [attr*=value] Selector</title>
<style type="text/css">
a[class*=dem] {
background: yellow;
}
</style>
</head>
<body>
<a class="subdemo_one" href="#">English International</a><br />
<a class="subdem" href="#">English US</a><br />
<a class="subdemos" href="#">Google</a><br />
</body>
</html>