3 回答

TA貢獻(xiàn)1810條經(jīng)驗(yàn) 獲得超5個(gè)贊
有幾種簡(jiǎn)單的方法可以實(shí)現(xiàn)這一目標(biāo):
也許很容易將鏈接包裝在 div 中
<div><a href= ${pet.href}> Read Reviews</a></div>
br
另一種選擇是在鏈接之前添加標(biāo)簽<a href= ${pet.href}> Read Reviews</a>
完成任務(wù)的最標(biāo)準(zhǔn)方法可能是在 CSS 樣式中使用 Flexbox。

TA貢獻(xiàn)1783條經(jīng)驗(yàn) 獲得超4個(gè)贊
嘗試這個(gè)
<div class ="image-grid">
<div class="animal">
<img class="pet-photo " src="${pet.photo}">
<div class="olay">
<h2 class="pet-name">${pet.name} </h2>
//href here
<h1 class="species">${pet.species} </h1>
<a href= ${pet.href}> Read Reviews</a>
</div>
</div>
</div>
或者你可以將h2,h1和a標(biāo)簽放在自己的 div 中

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超7個(gè)贊
你必須關(guān)閉你的<h1>
and<h2>
標(biāo)簽(用</h1>
and </h2>
,而不是用</div>
?。?/p>
添加回答
舉報(bào)