CSS to format a textarea column in an SQL report
PaulPOct 12 2011 — edited Oct 12 2011I'm using the following CSS class called "fixed" to format a multi-line column (textarea) in a standard SQL report (Column Formatting Attribute: CSS Class). Each row is now hard coded to a height of 40px or about 4 rows with a scrol bar. If the row has no data in it I'd like to default the row to a height of 1. Is it possible to do that?
<style type="text/css">
.fixed {display:inline-block; width:150px; height:40px; overflow-y:scroll; font-size:9px;}
</style>
regards
PaulP