如何在 "quasar way" 中居中输入
How to center input in "quasar way"
我开始使用类星体,我希望输入以类星体的方式居中(使用类星体可用 类、组件和指令)。我不想用 !important 强制风格。
这是codepenhttps://codepen.io/luckylooke11/pen/RwwqJex
<div id="q-app">
<q-layout>
<q-page-container>
<q-page class="home-page q-gutter-lg">
<div class="row justify-center q-pa-md">
<div class="col-auto">
<img alt="My image" class="image" src="../assets/images/image.png" />
</div>
<div class="col-12 text-center self-center">
<h2>My gooogle search</h2>
<q-input outlined square v-model="text" class="input self-center" placeholder="my centered input">
<template v-slot:append>
<q-icon v-if="text !== ''" name="close" @click="text = ''" class="cursor-pointer"></q-icon>
<q-icon v-else name="search"></q-icon>
</template>
</q-input>
</div>
</div>
</q-page>
</q-page-container>
</q-layout>
</div>
感谢您的任何提示。
我可能不是以类星体的方式来的,但使用 display: inline-block;
也许可以接受
.input {
width: 100%;
max-width: 40rem;
display: inline-block;
}
将此 classes 应用于 q-page 并删除您的输入 class:window-height window-width row justify-center items-center
row
将显示 属性 设置为水平 flex, justify-center centers
并 items-center
垂直居中。
请参考此codepen。
我开始使用类星体,我希望输入以类星体的方式居中(使用类星体可用 类、组件和指令)。我不想用 !important 强制风格。 这是codepenhttps://codepen.io/luckylooke11/pen/RwwqJex
<div id="q-app">
<q-layout>
<q-page-container>
<q-page class="home-page q-gutter-lg">
<div class="row justify-center q-pa-md">
<div class="col-auto">
<img alt="My image" class="image" src="../assets/images/image.png" />
</div>
<div class="col-12 text-center self-center">
<h2>My gooogle search</h2>
<q-input outlined square v-model="text" class="input self-center" placeholder="my centered input">
<template v-slot:append>
<q-icon v-if="text !== ''" name="close" @click="text = ''" class="cursor-pointer"></q-icon>
<q-icon v-else name="search"></q-icon>
</template>
</q-input>
</div>
</div>
</q-page>
</q-page-container>
</q-layout>
</div>
感谢您的任何提示。
我可能不是以类星体的方式来的,但使用 display: inline-block;
.input {
width: 100%;
max-width: 40rem;
display: inline-block;
}
将此 classes 应用于 q-page 并删除您的输入 class:window-height window-width row justify-center items-center
row
将显示 属性 设置为水平 flex, justify-center centers
并 items-center
垂直居中。
请参考此codepen。