cssをidで振る

こんなとき

<div id ="change_this">この文字の色を変えたい!</div>

こうすればよいと、、、

<style type="text/css">

#change_this { color: red; }

</style>