4
You can use -webkit-text-stroke
, but has no support for IE:
<style>
-webkit-text-stroke-width: 2px; /* largura da borda */
-webkit-text-stroke-color: #000; /* cor da borda */
</style>
.borda_texto{
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #000;
font-size: 3em; color: #fffdd9;
}
<div class="borda_texto">
Contorno no texto
</div>
if possible always put an example or image of the code result
– Alexandre Cavaloti