Stock Ticker

by pdavis68

HTML

<div class="ticker_container">

<div class="ticker_panel" >
<span class="ticker">AAPL<br/></span>
<span>TEST<br/></span>
</div>

</div>

CSS

.ticker_panel{
  background-color: white;
  width:120px;
  height:60px;
  line-height: 60px;
  float: left;
  display: inline;
  margin: 4px;
  border: 0px;
  padding: 0px;
}

.ticker_container{
    width: 450px;
    height: 100;
    overflow: auto;
}

.ticker {
  color: green;
  font: arial;
}