Does visual studio 2008 have the capability to automagically allow a CSS class to generate, and switched out for an inline style? I am sure i heard something about this at a Microsoft Event, but have not managed to find it in VS 2008.
For example, if i have the tag:
<div style="background-color:red; font-size:large">Hello World</div>
Is there any way of, with the click of a button, getting the code to update to the following
<style>.bigRedText{background-color:red; font-size:large}</style>
<div class="bigRedText">Hello World</div>
Thanks for any help