If I define a CSS attribute in both a CSS class and inside an element directly, which value ends up being used?
Let's use width as our example
<html>
<head>
<style type="text/css">
.a {
width: 100px;
}
</style>
</head>
<body>
<div class="a" style="width: 200px;"> </div>
</body>
</html>
What should the width of the div be in a browser? (according to the standard, not what happens in practice)