我正在尝试遵循本教程。
这是 TL;DR:
.grid--wrapper {
display: grid;
grid-template-columns: 1fr min(65ch, calc(100% - 64px)) 1fr;
column-gap: 32px;
}
.grid--wrapper > *,
.header {
grid-column: 2;
}
.full-bleed {
width: 100%;
grid-column: 1 / -1;
}
它遵循类似于 Medium 的设计,图像向浏览器边缘渗出。
它有一个full-bleed
图像类:
.full-bleed {
width: 100%;
grid-column: 1 / -1;
}
我真的不知道如何让我的next/image
工作与这种东西?
我的Img.tsx
文件看起来像:
import Image from 'next/image'
type ImageProps = any
export const Img = ({ className = '', ...props }: ImageProps) => (
<Image className={`${className} full-bleed`} width="100%" {...props} />
)
我的components/mdx/index.ts
样子:
import { H1 } from '@/components/mdx/H1'
import { H2 } from '@/components/mdx/H2'
import { H3 } from '@/components/mdx/H3'
import { H4 } from '@/components/mdx/H4'
import { H5 } from '@/components/mdx/H5'
import { H6 } from '@/components/mdx/H6'
import { Img } from '@/components/mdx/Img'
import { Pre } from '@/components/mdx/Pre'
import { PreCode } from '@/components/mdx/PreCode'
import { P } from './P'
export const MDXComponents = {
h1: H1,
h2: H2,
h3: H3,
h4: H4,
h5: H5,
h6: H6,
p: P,
img: Img,
pre: Pre,
'pre.code': PreCode,
}
我的.mdx
文件包含普通的 HTMLimg
标签,这些标签将使用Img
上面写的组件(内部使用next/image
)。
当我没有高度时如何获得全出血布局?我什layout="fill"
至无法正常工作。它只是将图像重叠在一起。
有任何想法吗?