I currently have two columns structured like this:
<div class="container">
<div class="row">
<div class="col-9"></div>
<div class="col-3"></div>
</div>
</div>
Through Angular, I am changing the classnames to col-8 offset-2
and col-0
. The col-0
class is defined as width:0;margin:0;padding:0
.
My goal is to animate both the width and positions of these columns. Any suggestions on how to achieve this?