<!DOCTYPE html>
<html>
<head>
<title>CSS * Selector</title>
<style>
ul * {
background-color:#FF0000;
}
</style>
</head>
<body>
<ul type="list" >
<li>This is first list item.</li>
<li>This is second list item.</li>
<li>This is three list item.</li>
</ul>
</body>
</html>