标签:nts dev strong size zh-cn content item width log
目录
border-radius: 30px
box-shadow: 60px -16px teal;
text-shadow: -11px -11px black;
background: linear-gradient(to bottom left, cyan 50%, palegoldenrod 50%);
background: radial-gradient(red 10px, yellow 30%, #1e90ff 50%;
transition: <property> <duration> <timing-function> <delay>;
transition-property: opacity, left, top, height;
transition-duration: 3s, 5s;
@keyframes slidein {
from {
margin-left:100%;
width:300%
}
to {
margin-left:0%;
width:100%;
}
}
p {
animation-duration: 3s;
animation-name: slidein;
}
<div id="col">
<p>......</P>
</div>
col {
/* column-count: 2;
column-width: 100px; */
columns: 2 100px;
column-gap: 2em;
}
参考:
.box {
display: flex;
flex-wrap: wrap;
}
.row{
flex-basis: 100%;
display:flex;
}
.row:nth-child(2){
justify-content: center;
}
.row:nth-child(3){
justify-content: space-between;
}
参考:
标签:nts dev strong size zh-cn content item width log
原文地址:https://www.cnblogs.com/rosendolu/p/10844874.html