之前国外有网友用CSS3绘制了一个哆啦A梦,最近也在学习CSS,于是就自己画了一个海贼王的图标。源代码如下: 1<html lang="en"> 2<meta charset="utf8"></meta> 3<title>むぎわら</title> 4<style type="text/css"> 5h1 { 6 text-align: center; 7} 8#container { 9 margin: 50px auto; 10 width: 502px; 11 height: 322px; 12} 13#content { 14 width: 100%; 15 height: 100%; 16 background: black; 17 position: relative; 18} 19#content div { 20 position: absolute; 21} 22.bone_area { 23 /*background: rgba(0, 0, 255,……

Continue reading