I am working with dynamic template where HTML code generated from Back-end(using typescript as back-end).
I want to write inline css
on hover
. Already written this code but does not work it.
style=":hover { height: 72%; width: 117%;}; cursor:pointer; height:70%; width:115%;"
Code Sample:
<img class="ImgStyle1" src="{{item.FrontPage}}" id="iCapImg" name="nBookImg{{i}}" (click)="fullScreenImage($event)" alt="{{item.Caption}}" style=":hover { height: 72%; width: 117%;}; cursor:pointer; height:70%; width:115%;">
Any help would be appreciated.