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