I have been experimenting with Vue and I created a simple code snippet.
<template>
<div>
<input />
<span class="span-text">Hi</span>
</div>
</template>
// index.css
.span{
margin-top: 3px;
}
I am trying to add space between the input and span elements.
However, the margin-top property is not working as expected. How can I resolve this issue? Your help is greatly appreciated.