Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!-- QUITAR ESTO PARA VER EL EJEMPLO <style> main { width: 100%; display: flex; flex-direction: column; align-items: center; padding:40px 0; -select: none; font: 16px / 1 Helvetica, sans-serif; }p {padding:20px;box-shadow: 0 -1px 0 0 #b4a078 inset;} p > a { box-shadow: 0 -1px 0 0 #b4a078 inset; } </style> <main ref="main"> <p>Hermoso efecto de subrayado</p> </main> <script> export default { methods: { handleBtnClick(e) { const { dialog, article } = this.$refs; dialog.show(); article.classList.add('de-emphasized'); }, handleDialogClick(e) { const { dialog, article } = this.$refs; dialog.close && dialog.close(); article.classList.remove('de-emphasized'); } } } </script> -->