flexboxを利用して、写真名と写真を上下に並べたいのですが、横並びになってしまいます。
写真名と写真を縦に並べたいです。
アドバイスどうかよろしくお願いします。
nuxt.js
1<template> 2 3 <v-row justify="center"> 4 <div class="list"> 5 <div class="title"> 6 <h2>一覧結果</h2> 7 </div> 8 <div class="wrapper"> 9 <div class="name" > 10 <div class="post_name" v-for="post in posts" > 11 <div class="box"> <nuxt-link :to="`post/${post.id}`"> 12 {{post.name}}s 13 <img v-bind:src="post.path" class="image"></nuxt-link> 14 </div> 15 </div> 16 </div> 17 </div> 18 </div> 19 </v-row> 20 21</template> 22 23<script> 24import axios from 'axios'; 25export default { 26 created(){ 27 axios.get(`http://127.0.0.1:8000/api/category/${this.$route.params.id}`) 28 .then(response => { 29 this.posts= response.data.posts 30 31 this.id = response.data.id 32 this.name= response.data.name 33 this.path = response.data.path 34 console.log(response.data) 35 }); 36 37 }, 38 data () { 39 return { 40 params:'', 41 posts:[], 42 post:[], 43 id:'', 44 name:'', 45 content:'', 46 path:'', 47 } 48 }, 49 methods: { 50 returnPage() { 51 this.$router.go(-1); 52 }, 53 54 }, 55 } 56 57</script> 58<style scoped> 59.list{ 60 text-align:center; 61} 62 63.post_name{ 64 top:10%; 65 width:50%; 66 display:flex; 67} 68 69 70.name{ 71 width:50%; 72 height:50%; 73 padding-left:20px; 74 display:flex; 75 flex-direction: column; 76} 77.name img{ 78 position:relative; 79 top:40%; 80 width:50%; 81} 82.wrapper{ 83 width: 200%; 84 display:flex; 85} 86 87 body{ 88 background-color:#0F0; 89 } 90 91 92 </style> 93
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/07/05 11:26