Crop and center images with CSS, Not found solution when visiting https://[website].netlify.app/products
Table of contents
No headings in the article.
- quote:
"In your public folder (folder which contains index.html) create a file called _redirects with no extension. Then, type the following inside it:
/* /index.html 200 " stackoverflow.com/a/63738122/720276 medium.com/@ishoshot/page-not-found-on-relo..
// jsconfig.json
{
"compilerOptions": {
"target": "es5",
"module": "esnext",
"baseUrl": "/",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
]
}
}
- product-covers stackoverflow.com/questions/11552380/how-to.. stackoverflow.com/questions/11552380/how-to..
branch: github.com/sunpochin/vue2-ecommerce/tree/pr..
在 ProductCard.vue 裡面,
.center-cropped {
width: 100%;
height: 250px;
/* background-position: center center;
background-repeat: no-repeat; */
overflow: hidden;
}
.center-cropped img {
object-fit: cover;
height: 100%;
width: 100%;
border-radius: 9px;
}