我需要给我的HTML页面上的特定项目上色。

huangapple go评论119阅读模式
英文:

I need to colorize a specific item on my html

问题

我想着色按钮上的数字25 > <div class="key show-display">25</div>,就像数字15 > <div class="key show-display">15</div> 一样。

你能帮我吗?谢谢。

我需要在我的HTML上着色特定项目,但我做不到。
我需要在我的HTML上着色特定项目,但我做不到。
我需要在我的HTML上着色特定项目,但我做不到。
我需要在我的HTML上着色特定项目,但我做不到。
我需要在我的HTML上着色特定项目,但我做不到。

英文:

I want to colorize the button with number 25 > <div class="key show-display">25</div>
like a number 15 > <div class="key show-display">15</div>

Can you help me? Thanks.

I need to color a specific item on my html but I can't.
I need to color a specific item on my html but I can't.
I need to color a specific item on my html but I can't.
I need to color a specific item on my html but I can't.
I need to color a specific item on my html but I can't.

&lt;div class=&quot;calc&quot;&gt;
&lt;div id=&quot;display&quot; class=&quot;display&quot;&gt;0&lt;/div&gt;
&lt;div class=&quot;keypad&quot;&gt;

&lt;div class=&quot;keys-row first-keys-row&quot;&gt;
&lt;div class=&quot;key clear-all&quot;&gt;AC&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;80&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;85&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;90&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;keys-row&quot;&gt;
&lt;div class=&quot;key show-display&quot;&gt;20&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;25&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;30&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;35&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;keys-row&quot;&gt;
&lt;div class=&quot;key show-display&quot;&gt;5&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;10&lt;/div&gt;
&lt;div class=&quot;key show-display&quot;&gt;15&lt;/div&gt;
&lt;div class=&quot;key calculate&quot;&gt;=&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;style&gt;
.calc {
color: #fff;
width: 400px;
padding: 10px;
background-color: #302d2d;
border: 10px solid #302d2d;
border-bottom: 5px solid #302d2d;
border-radius: 10px;
margin-left: 10px;}

.calc .display {
font-size: 40px;
margin-bottom: 20px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
background-color: gray;
border: 10px solid gray;
border-radius: 10px;
color: black;
height: 80px;}

.keys-row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;}

.keypad .keys-row .key {
background-color: #999191;
font-size: 35px;
text-align: center;
width: 95px;
line-height: 75px;
border-radius: 50px;
margin: 0 5px;
cursor: pointer;
user-select: none;}

.keypad :first-child :nth-child(1){
background-color: black;}

.keypad .keys-row .key:active{
background-color: #a5a5a590;}

.keypad :last-child :nth-child(4){
background-color: lightseagreen;}

.keypad :last-child :nth-child(4):active{
background-color: #17807a;}

.keypad :last-child :nth-child(3){
background-color: #b22222;}

.keypad :last-child :nth-child(3):active{
background-color: #801818;}
&lt;/style&gt;

答案1

得分: 1

第一个 div:nth-child(2),是选择.keypad内第二个DIV。
第二个 div:nth-child(2),是选择DIV内的第二个按钮。

英文:
.keypad div:nth-child(2) div:nth-child(2) {
    background: #b22222;
}
  • The first div:nth-child(2), is to select the second DIV inside .keypad
  • The second div:nth-child(2), is to select the second button of the DIV

答案2

得分: 0

这可以是另一种选择:

        &lt;div class=&quot;keys-row second-keys-row&quot;&gt;
        &lt;div class=&quot;key show-display&quot;&gt;20&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;25&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;30&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;35&lt;/div&gt;&lt;/div&gt;

        &lt;div class=&quot;keys-row third-keys-row&quot;&gt;
        &lt;div class=&quot;key show-display&quot;&gt;5&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;10&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;15&lt;/div&gt;
        &lt;div class=&quot;key calculate&quot;&gt;=&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;style&gt;
        .keypad .keys-row.second-keys-row .key.show-display:nth-child(2){
        background-color: red;}

        .keypad .keys-row.third-keys-row .key.show-display:nth-child(3){
        background-color: red;}
&lt;/style&gt;
英文:

this can be an other option:

        &lt;div class=&quot;keys-row second-keys-row&quot;&gt;
        &lt;div class=&quot;key show-display&quot;&gt;20&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;25&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;30&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;35&lt;/div&gt;&lt;/div&gt;

        &lt;div class=&quot;keys-row third-keys-row&quot;&gt;
        &lt;div class=&quot;key show-display&quot;&gt;5&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;10&lt;/div&gt;
        &lt;div class=&quot;key show-display&quot;&gt;15&lt;/div&gt;
        &lt;div class=&quot;key calculate&quot;&gt;=&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;

&lt;style&gt;
        .keypad .keys-row.second-keys-row .key.show-display:nth-child(2){
        background-color: red;}

        .keypad .keys-row.third-keys-row .key.show-display:nth-child(3){
        background-color: red;}
&lt;/style&gt;

huangapple
  • 本文由 发表于 2023年2月9日 03:34:55
  • 转载请务必保留本文链接:https://go.coder-hub.com/75390888.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定