Bug 1904881 Comment 1 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

This is a positioning issue with abspos content inside of a `display:inline; position:relative;` container. The page has an element with these styles serving as a containing block for an abspos child with auto insets:
```
.cmp-compare-sticky-drawer__remove-prod-btn {
	display: inline;
	position: relative;
	top: -20px;
	left: -10px;
	height: 36px;
	width: 36px;
}
```
...and we end up positioning the abspos child's placeholder-frame incorrectly.

I think this is essentially a version of bug 489100.
This is a positioning issue with abspos content inside of a `display:inline; position:relative;` container. The page has an element with these styles, which then serves as a containing block for an abspos child with auto insets (the "x" icon):
```css
.cmp-compare-sticky-drawer__remove-prod-btn {
	display: inline;
	position: relative;
	top: -20px;
	left: -10px;
	height: 36px;
	width: 36px;
}
```
...and we end up positioning the abspos child's placeholder-frame incorrectly.

I think this is essentially a version of bug 489100.

Back to Bug 1904881 Comment 1