Link to home
Start Free TrialLog in
Avatar of LB1234
LB1234

asked on

Want to apply border to all divs within a containing div. What's the CSS syntax?

Want to apply border to all divs within a containing div.  What's the CSS syntax?

Containing div name = dashboard_container

interior div name = quick_views

interior div name = reports


Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Scott Fell
Scott Fell
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of LB1234
LB1234

ASKER

Thanks!
<style>
    #dashboard_container div{border:solid 1px #000;}
  </style>