27 lines
506 B
Vue
27 lines
506 B
Vue
<template>
|
|
<table class="emphased">
|
|
<tr>
|
|
<td>Très bien</td>
|
|
<td>Bien</td>
|
|
<td>Passable</td>
|
|
<td>Insuffisant</td>
|
|
<td>À rejeter</td>
|
|
</tr>
|
|
</table>
|
|
</template>
|
|
|
|
<style scoped="true" lang="css">
|
|
.emphased {
|
|
border: 1px solid #444;
|
|
padding: 1em;
|
|
margin-top: 2em;
|
|
margin-bottom: 2em;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.emphased td {
|
|
border: 1px solid;
|
|
}
|
|
</style> |