box-shadow: 10px 10px 5px grey;
shadow-right: 10px;
shadow-bottom: 10px;
shadow-color: grey;
alpha-effect[shadow]: 10px 10px 5px grey;
background-size: 80px 60px;
bg-dimensions: 80px 60px;
background-proportion: 80px 60px;
alpha-effect: bg-resize 80px 60px;
object-rotation: 30deg;
transform: rotate(30deg);
rotate-object: 30deg;
transform: rotate-30deg-clockwise;
transform: scale(2,4);
scale-object: 2,4;
scale: (2,4);
Yes it is possible, by using CSS3 border image property we can use image as a border.
border: url(logo.png);
border: image url(logo.png);
border-image: url(logo.png) 30 30 round;
::first-line selector
is used to add a style to the first line of the specified selector.p::first-line {
background-color: yellow;
}
<style>
#multibackgroundimg {
background-image: url(imgs/logo.png), url(imgs/sample_logo.png);
background-position: left top, left top;
background-repeat: no-repeat, repeat;
padding: 75px;
}
</style>
<style>
.multi_col {
/* Column count property */
-webkit-column-count: 4;
-moz-column-count: 4;
column-count: 4;
/* Column gap property */
-webkit-column-gap: 40px;
-moz-column-gap: 40px;
column-gap: 40px;
/* Column style property */
-webkit-column-rule-style: solid;
-moz-column-rule-style: solid;
column-rule-style: solid;
}
</style>
<style>
div {
margin: 20px;
padding: 10px;
width: 300px;
height: 100px;
border: 5px solid pink;
outline: 5px solid green;
outline-offset: 15px;
}
</style>