我的定位有问题。我的照片
我创建了星爆并插入这样的文本:jsfiddle code,但我无法创建像我的图片这样的元素的定位right: 0; position: relative
。请建议我。谢谢。
我的定位有问题。我的照片
我创建了星爆并插入这样的文本:jsfiddle code,但我无法创建像我的图片这样的元素的定位right: 0; position: relative
。请建议我。谢谢。
使用 float 作为锚标记和文本,然后给出文本宽度
我认为您需要.starburst5
:
position: absolute;
top: 0;
right: 0;
不要忘记position: relative;
从 html-element 和 css 中删除属性。
用于定位相对和绝对
定义您的父 div position relative
并定义您的孩子
position absolute
像这样
.parent{
position:relative;
padding-right:100px;
}
.starburst5{
position: absolute;
right:0;
top:20px;
}