Sketchy style borders with CSS border-image? Anyone identified this species yet?

StackOverflow https://stackoverflow.com/questions/15662398

  •  29-03-2022
  •  | 
  •  

سؤال

Call me crazy, but wouldn't it be cool to apply a hand-written/sketchy style border to your HTML elements? Has anyone done this with any success yet? Please share!!!

هل كانت مفيدة؟

المحلول

I just gave it a try. I'm no artist, but the concept works. jsFiddle

div {
  border: 15px solid transparent;
  width: 350px;
  padding: 10px 20px;
}

#round {
  border-image: url("http://s3.amazonaws.com/dfc_attachments/images/3247065/sketchy_web.png") 30 30 round;
}

#stretch {
  border-image: url("http://s3.amazonaws.com/dfc_attachments/images/3247065/sketchy_web.png") 30 30 stretch;
}
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top