0
有什麼方法可以使用語義Ui來擁有img和圖標角落圖標。所以我需要的IMG演出,並添加圖標,它React Semanti UI Corner圖標圖像和圖標
<span>
<i class="huge icons">
<img src="test.jpg"></img>
<i class="corner add icon"></i>
</i>
<span>
有什麼方法可以使用語義Ui來擁有img和圖標角落圖標。所以我需要的IMG演出,並添加圖標,它React Semanti UI Corner圖標圖像和圖標
<span>
<i class="huge icons">
<img src="test.jpg"></img>
<i class="corner add icon"></i>
</i>
<span>
我假設你正在使用semantic-ui-react
。 你可以這樣做:
<Icon.Group size='huge'>
<img src="test.jpg" />
<Icon corner name='add' />
</Icon.Group>
你可以找到更多的例子HERE