### Calc() The function calc() allows to define CSS values with the use of mathematical expressions, the value adopted for the property is the result of a mathematical expression. #### HTML ```html
``` #### CSS ```css .box-example { height: 280px; background: #222 url('https://image.ibb.co/fUL9nS/wolf.png') no-repeat; background-position: calc(100% - 20px) calc(100% - 20px); } ``` #### Demo If you want to align a background-image from right and bottom wasn't possible with just straight length values. So now it's possible using calc():