We would like to know how to hide element by attribute.
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.ms-calloutLink.ms-uppercase[title='myTitle']{
display: none;
}<!--from w w w. ja v a 2 s . c o m-->
</style>
</head>
<body>
<a href="" title="myTitle" class="ms-calloutLink ms-uppercase"> View Library</a>
</body>
</html>
The code above is rendered as follows: