Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Lära Styling Components with CSS | Section
Vue.js Fundamentals and App Development

bookStyling Components with CSS

Svep för att visa menyn

Vue components can be styled using regular CSS. You define styles inside the <style> section of a component.

<template>
  <h1 class="title">Hello Vue</h1>
</template>

<style>
.title {
  color: #4f46e5;
  font-size: 28px;
}
</style>

The class is applied in the template and styled in the <style> block.

You can use all standard CSS features such as colors, spacing, and typography.

.title {
  color: #111827;
  margin-top: 20px;
  font-weight: bold;
}

Styling components with CSS allows you to control the appearance of your interface while keeping styles organized inside each component.

question mark

Where should you place CSS styles that are specific to a Vue component?

Vänligen välj det korrekta svaret

Var allt tydligt?

Hur kan vi förbättra det?

Tack för dina kommentarer!

Avsnitt 1. Kapitel 19

Fråga AI

expand

Fråga AI

ChatGPT

Fråga vad du vill eller prova någon av de föreslagna frågorna för att starta vårt samtal

Avsnitt 1. Kapitel 19
some-alt