如果我创建一个 button <Button id="Button" text="Hey" />
,我将如何将它定位在我想要的网页上,而不仅仅是在没有内容的地方?
问问题
113 次
2 回答
4
使用CSS 定位
于 2012-04-23T13:45:15.177 回答
1
使用绝对定位。
前任:
position:absolute; //Place wherever we want on the page
left-margin:10px; //Move right 10px
top-margin:20px; //Move down 20px
z-index:2; //Put on top of everything with z-index of 1 or 0
于 2012-04-23T13:46:21.997 回答