I'm doing practice with CakePHP and just wonder to know if it's logical/right thing to place CSS portions dedicated to the template view only.
I'm talking about thing like this:
<style>
.form-element-name {
width:150px;
/* colors and other stuff are placed in main css */
}
</style>
<form>
<div class="form-element-name">Username</div><input name="myuser"/>
<div class="form-element-name">Password</div><input name="mypass"/>
<etc.../>
</form>