将文字稍微向右定位

时间:2019-02-05 13:13:48

标签: html css

我正在尝试将文本右移一些。我认为已经尝试了很多位置代码,但是CSS不会读取该代码。

.portal .icons a {
    position: relative;
    margin-bottom: 15px;
    top: 0px;
    transition: all 0.5s ease;
    text-decoration: none;
    color: rgba(215, 213, 216, 0.4);
    font-family: ZCOOL QingKe HuangYou;
    font-size: 40px;
    text-shadow: 2px 2px 2px rgba(215, 213, 216, 0.4);
}

2 个答案:

答案 0 :(得分:0)

由于您添加了postition:relative,因此您应该添加left: value_of_how_much_you_wnt_to_push_it_to_the_right

答案 1 :(得分:0)

尝试:

.portal .icons a {
position: relative;
margin-bottom: 15px;
top: 0px;
//add this
left : 100% ; 
transition: all 0.5s ease;
text-decoration: none;
color: rgba(215, 213, 216, 0.4);
font-family: ZCOOL QingKe HuangYou;
font-size: 40px;
text-shadow: 2px 2px 2px rgba(215, 213, 216, 0.4);

}