• Bryan Sosa 7
  • NEWBIE
  • 0 Points
  • Member since 2015

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hi,

I did the following tuorial:
http://ccoenraets.github.io/getting-started-lightning-components/index.html

And I wonder how to make a div scrollable in a lighning component.
 
<aura:component implements="force:appHostable">

    <div>
        <div>
            <c:AccountMap />
        </div>

        <div>
<!------------ Need to make this component scrollable --------------------->
            <c:AccountList />
        </div>
    </div>

</aura:component>