App Background

1

I'd like to know if there's a way to make triangles with div's that are responsive to the background of an application, or whether it's best to use a vector image. If I were to indicate some website with veto images, I would be very happy too.
Thank you for your attention.

    
asked by anonymous 06.09.2015 / 18:53

1 answer

0

You can do this:

#triangulo{
  width: 0px;
  height: 0px;
  border-width: 100px;
  border-color: green green transparent transparent;
  border-style: solid;
}
<div id="triangulo"> 
</div>
    
06.09.2015 / 18:58