If you set multiple og:image headers, e.g.:
<meta property="og:image" content="img1.png" />
<meta property="og:image" content="img2.png" />
How do you set multiple widths and heights if the images are different dimensions?
<meta property="og:image:width" content="100">
<meta property="og:image:height" content="100">
Can I only set one set of width and height elements or an I do multiple like this?:
<meta property="og:image" content="img1.png" />
<meta property="og:image:width" content="100">
<meta property="og:image:height" content="100">
<meta property="og:image" content="img2.png" />
<meta property="og:image:width" content="200">
<meta property="og:image:height" content="200">