我正在尝试将图像模型转换为 HTML/CSS,并且在调整窗口大小时,我正在努力正确定位并保持相对位置。
JSFiddle 代码:
http://jsfiddle.net/victorhooi/ZcrCc/
全屏 JSFiddle 输出:
http://jsfiddle.net/victorhooi/ZcrCc/embedded/result/
这是图像模型:
我不知道如何将粉红色和蓝色的鸟固定到类型上,并让它在不同的分辨率和调整窗口大小时都保持在那个位置。我想过使用max-width 100%
and height: auto;
,但这似乎不太奏效。
本质上,我希望粉红色的鸟始终位于小写字母“a”的顶部,而蓝色的鸟始终位于“r”的右下角,并且&符号垂直居中并保持不变那里。
这是CSS:
/*TODO - There should be a way to do the two below using child selectors?*/
#alpha-bio-heading {
color: #faaacd;
}
#victor-bio-heading {
color: #85b1d8;
}
/*# TODO - Is there a way to fix this better for page resizes?*/
#pink-bio-bird {
position: absolute;
right: 55px;
top: 28px;
}
#blue-bio-bird {
position: absolute;
right: 15px;
top: 85px;
}
/*TODO - There should be a better way to centre this within the box.*/
#ampersand {
position: relative;
bottom: -120px;
}