gpt4 book ai didi

css - 使用按钮更改 CSS 模型

转载 作者:行者123 更新时间:2023-11-28 16:08:16 25 4
gpt4 key购买 nike

在我的 Cordova 应用程序中,我想要 2 个按钮:

  • 小文本:一个用于用我的 div 加载一个特殊类
  • 大文本:另一个为我的 div 加载另一个类

这将用于更改我的 div 中文本的大小。

这是否可能,如果可能,如何实现?

谢谢

最佳答案

不确定您是否正在尝试,因为您没有提供太多信息,但它应该为您指明正确的方向:

.text-lg {
font-size: 30px;
}

.text-sm {
font-size: 10px;
}
<!DOCTYPE HTML>
<html ng-app>

<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.5.8/angular.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.min.css" />
</head>

<body>
<div class="col-md-12">
<span ng-class="radio">Text</span>
<div class="radio">
<label>
<input type="radio" value="text-lg" ng-model="radio">Big text
</label>
<label>
<input type="radio" value="text-sm" ng-model="radio">Small text
</label>
</div>
</div>
</body>

</html>

关于css - 使用按钮更改 CSS 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38768973/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com