我希望我的屏幕具有此box-shadow属性,以便在屏幕内部有一个包含所有内容的盒子。我还想放置一个图像作为着陆区,图像会跳动,然后淡入网页的其余部分。我无法在创建的框中将图像居中放置。
不确定如何执行
// The InputParameters collection contains all the data passed in the message request.
if (context.InputParameters.Contains("Target") &&
context.InputParameters["Target"] is Entity)
{
// Obtain the target entity from the input parameters.
Entity entity = (Entity)context.InputParameters["Target"];
body {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
margin: 0;
background: #eee;
height: auto;
}
* {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
main {
max-width: 900px;
margin: auto;
box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.1), -30px 0px 40px rgba(0, 0, 0, 0.2);
}
#landing {
background: white;
}
i {
background: rgb(0, 0, 0);
border-radius: 20px;
font-size: 25px;
position: relative;
margin-right: 10px;
border-radius: 50%;
display: inline-block;
padding: 10px;
}
img {
display: block;
}
我希望菱形及其周围的圆变小,并位于屏幕上框的中间。
答案 0 :(得分:0)
添加此CSS,以将图像和圆对齐到中心。
#landing-image {
text-align: center;
}
要减小尺寸,可以对框和图像使用高度,宽度 CSS属性。