How to make a trasnparente form with bootstrap?

Asked

Viewed 356 times

-2

I wanted to put together a transparent form, like the photo exampleexemplo

1 answer

0

Here is the code using the standard bootstrap class and adding the following style:

<style>
                    input.transparent-input{
                    background-color:rgba(0,0,0,0) !important;
                    border:none !important;
                    }
</style>

<input class="form-control transparent-input" type='text' name='nome' placeholder="Titulo">

Browser other questions tagged

You are not signed in. Login or sign up in order to post.