Stretch image in iron-image element

后端 未结 4 1082
北恋
北恋 2021-01-23 06:51

I have an element inside a div :

. The image is 315px in width
4条回答
  •  不知归路
    2021-01-23 07:22

    I had the same problem, the sizing attribute doesn't help me for that, and because the img inside iron-image is under shady DOM, you can access it with ::content.

    #imgWrapper {
        width: 330px;
    }
    iron-image {
        width:100%;
    }
    iron-image::content img {
        width: 100%;
    }
    

    and

    for ::content to work in light dom (outside of a custom element) don't forget