Web 2.0 Style Tips

In another thread, someone said that they can no longer control the field height.

With Web 2.0 we have 2 options:
1.- use code in the opening event

me.Style.Value("height") = "100%"

2.- put a Style in the App HTML Header

<style>
.form-control {
    height: 100%!important;
}
</style>