CSS 动态邮件查收效果

发布时间:2024年01月16日

<template>
	<view class="content">
		<view class="tooltip-container">
			<text class="tooltip">查看</text>
			<text class="text">@</text>
		</view>
	</view>
</template>

<script>

</script>

<style>
	body {
		background-color: #212121;
		/* 设置背景颜色为 #212121 */
	}

	.content {
		display: flex;
		/* 使用弹性布局 */
		flex-direction: column;
		/* 设置主轴方向为垂直方向 */
		align-items: center;
		/* 在交叉轴上居中对齐 */
		justify-content: center;
		/* 在主轴上居中对齐 */
		margin-top: 300px;
		/* 设置顶部外边距为 300px */
	}

	.tooltip-container {
		height: 70px;
		/* 设置高度为 70px */
		width: 110px;
		/* 设置宽度为 110px */
		border-radius: 5px;
		/* 设置边框圆角为 5px */
		background-color: #fff;
		/* 设置背景颜色为 #fff */
		background-image: linear-gradient(to left bottom,
				/* 设置背景渐变色
文章来源:https://blog.csdn.net/weixin_54226053/article/details/135637303
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。