Answers for "calc css function"

CSS
0

css calc function

.banner {
  position: absolute;
  left: 40px;
  width: calc(100% - 70px);
  border: solid black 1px;
  box-shadow: 1px 2px;
  background-color: yellow;
  padding: 6px;
  text-align: center;
  box-sizing: border-box;
}
Posted by: Guest on August-12-2021

Browse Popular Code Answers by Language