+ 1
Can I use tow attributes for one element?
like if I want to make the <hr/> tag with 50 pixels and aligned right
3 Respostas
+ 5
I guess this is what you want
<hr>
<style>
    hr{
        width:50px;
        float:right;
    }
</style>
+ 1
I'll copy & try it! 😊
+ 1
thanks .. & bro I found what I exactly asked for just in the next lesson



