Как поместить компонент изображения из следующего / изображения в позицию: absolue
Могу ли я поместить элемент Изображение из следующего / изображения в
{ position: absolute; left: 50% }
? Похоже, что это не повлияло.
Пример:
import React from 'react'
import Image from 'next/image'
import styled from 'styled-components'
const Container = styled.div`
position: relative;
`
const Test = styled(Image)`
position: absolute;
left: 50%;
`
const Page: React.FC = () => {
return (
<Container>
<Test src{someImg.webp} width={500} height={500} objectFit="none" />
</Container>
)
}
export default Page;
1 ответ
Решение
поместите свое изображение в другой родительский div с позицией u like. в твоем случае:
import React from 'react'
import Image from 'next/image'
import styled from 'styled-components'
const Container = styled.div`
position: relative;
`
const ImageContainer = styled.div`
position: absolute;
left: 50%;
`
const Page: React.FC = () => {
return (
<Container>
<ImageContainer>
<Image src{someImg.webp} width={500} height={500} objectFit="none"/>
</ImageContainer>
</Container>
)
}
export default Page;