gpt4 book ai didi

reactjs - 如何将 next/image 中的 Image 组件放在位置 : absolue

转载 作者:行者123 更新时间:2023-12-05 02:44:01 25 4
gpt4 key购买 nike

我可以在 { position: absolute; 中放置来自 'next/image' 的元素图像吗?左: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;

最佳答案

将您的图像放在您喜欢的位置的另一个父 div 中。在你的情况下:

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;

关于reactjs - 如何将 next/image 中的 Image 组件放在位置 : absolue,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66643887/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com