Pawan
Pawan

Reputation: 32331

How do i increase the font size of Name column under div Greater Quantity

I am trying to increase the font size of the Name column present under div Greater Quantity

I have tried as following but its not reflecting

<div class="first">
<h1>Greater Quantity</h1>
    <div  id="greaterquan"></div>
</div>

#greaterquan {
  float:left;
  background-color:purple;
   font-size: 14px;
         font-color: white  ;
}

Could you please let me know how to do this

http://jsfiddle.net/b4j852uq/6/

Upvotes: 0

Views: 17

Answers (1)

Nick
Nick

Reputation: 3281

Like this? jsFiddle

#greaterquan .sorting_1{
    font-size:15px;
    color:red;
}

Upvotes: 1

Related Questions