HTML愛心代碼是一項超級簡單的技能。只需要一兩行代碼,就能夠在網頁上呈現一個可愛的愛心圖案。
<div style="width:50px;height:50px;position:relative"> <div style="width:50px;height:50px;position:absolute;top:0"> <div style="width:50px;height:50px;position:relative"> <div style="width: 20px; height: 20px; background-color: red; position: absolute; top: 0; left: 15px; transform: rotate(45deg);"></div> <div style="width: 20px; height: 20px; background-color: red; position: absolute; top: 0; right: 15px; transform: rotate(-45deg);"></div> </div> </div> </div>
簡單地說,代碼就是創建一個DIV容器,然后在其中嵌套三個DIV元素,分別用于創建兩個斜向的矩形以及一個中心點。該中心點由兩個旋轉45度的矩形拼接而成,形成了可愛的愛心形狀。
如果你還沒有HTML編程或者設計經驗,不用擔心。HTML愛心代碼不僅容易學習,而且還能夠為你的網站添加一些可愛的元素,令其更有吸引力。