Re: [Backgrounds/Borders] Request to remove no-clip value from background-clip

On Thu, Mar 26, 2009 at 2:43 PM, Brad Kemper <brad.kemper@gmail.com> wrote:

> Wouldn't it be useful in case where you had, say, a logo watermark image
> centered behind a paragraph, and you didn't want it to be clipped or resized
> if the text was not enough lines to ensure otherwise, and you didn't want
> the paragraph to have a min-height?
>

You could use something like this:
p {
  position:relative;
  z-index:0;
}
p::before {
  position:absolute;
  z-index:-1;
  content:url(logo.png);
  left:0;
  right:0;
  width:256px;
  margin-left:auto;
  margin-right:auto;
}

Rob
-- 
"He was pierced for our transgressions, he was crushed for our iniquities;
the punishment that brought us peace was upon him, and by his wounds we are
healed. We all, like sheep, have gone astray, each of us has turned to his
own way; and the LORD has laid on him the iniquity of us all." [Isaiah
53:5-6]

Received on Thursday, 26 March 2009 02:18:38 UTC