「CSS」 position プロパティを使う方法

2020年10月19日

構文
position (static | relative | absolute | sticky | fixed)
使用例
/*位置指定*/
position: static;
/*相対位置指定*/
position: relative;
top: 30px; left: 30px;
/*絶対位置指定*/
position: absolute;
top: 30px; left: 30px;
/*粘着位置指定*/
position: -webkit-sticky;
position: sticky;
top: 20px;

CSS

Posted by arkgame