Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I need to draw box like below image in our asp.net html page.

I am able to generate simple box, but how to put an extra layer on right and bottom.

Please suggest me what CSS can be used? please help with CSS code.

Thanks,

enter image description here

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
155 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need box-shadow.

div{
    width: 100px;
    height: 100px;
    border: 1px solid black;
    box-shadow: 3px 3px 0px 0px rgba(0,0,0,1);
}

Something like that.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...