CSS3男女頭像是一種使用純CSS3技術設計的頭像,適用于個人博客、社交網站等。利用CSS3中的偽元素、邊框、漸變等特性,可以輕松地實現男女頭像的設計。
.icon-male::before { content: ""; width: 60px; height: 60px; display: inline-block; border-radius: 50%; background-color: #2c3e50; } .icon-male::after { content: ""; width: 15px; height: 35px; border-radius: 50px 50px 0 0; display: inline-block; background-color: #2c3e50; position: relative; top: -10px; } .icon-female::before { content: ""; width: 60px; height: 60px; display: inline-block; border-radius: 50%; background-color: #e74c3c; } .icon-female::after { content: ""; width: 25px; height: 25px; background-color: #e74c3c; border-radius: 50%; position: relative; top: -10px; left: -25px; }
使用以上代碼即可創建男女頭像,其中.icon-male代表男性頭像,.icon-female代表女性頭像。可以根據實際需要調整顏色和尺寸。
男性頭像使用圓形和三角形的結合,代表陽剛之氣;女性頭像則使用粉色和半圓形,展現柔美之美。通過CSS3的強大功能,設計出簡單而又精致的頭像,既增加了頁面的美觀性,又符合當前響應式、輕量化的設計思路。