我正在创建Ionic 4 Angular应用程序,并使用Html Fieldset。但是Html字段集在Safari浏览器和iPhone中无法正常显示。
.Legend_css { . /* This is lagend css class use in html */
position: relative;
top: 1px;
padding: 6px;
color: white;
text-align: center;
font-size: 16.16px;
letter-spacing: 0.15 normal;
border-radius: 6px;
margin-left: 58px;
border: 1px solid rgba(92, 111, 123, 0.829);
background: rgba(92, 111, 123, 0.829);
height: 30px;
width: 240px;
}
2条答案
按热度按时间qltillow1#
alpha通道支持存在已知问题。请参见:https://ionicframework.com/docs/theming/advanced#known-limitations
要分类此问题,请先不要使用RGBA值,看看它是否正确呈现。
ac1kyiln2#
只需删除
position
和top
css属性。下面是我的代码。