在类中选择一个类并使其具有自己的行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在类中选择一个类并使其具有自己的行相关的知识,希望对你有一定的参考价值。

如何在课堂上选择课程? CSS

需要做的事情:在“按钮”中选择“fourthRow”并使类出现在它自己的行上另外,如果有人知道如何使这个代码更有效,那将非常感激。非常湿的代码。

html

<!DOCTYPE html>
    <html>
    <head>
    	<title>Calculator</title>
    	<link rel="stylesheet" type="text/css" href="style.css">
    </head>
    <body>
    <div class="buttons">
    	<div class="fourthRow">
    		<div>
    			<button class="7">7</button>
    		</div>
    		<div>
    			<button class="8">8</button>
    		</div>
    		<div>
    			<button class="9">9</button>
    		</div>
    		<div>
    			<button class="divide">&#247;</button>
    		</div>
    	</div>
    	<div class="thirdRow">
    		<div>
    			<button class="4">4</button>
    		</div>
    		<div>
    			<button class="5">5</button>
    		</div>
    		<div>
    			<button class="6">6</button>
    		</div>
    		<div>
    			<button class="multiplicaton">x</button>
    		</div>
    	</div>
    	<div class="secondRow">
    		<div>
    			<button class="1">1</button>
    		</div>
    		<div>
    			<button class="2">2</button>
    		</div>
    		<div>
    			<button class="3">3</button>
    		</div>
    		<div>
    			<button class="subtract">-</button>
    		</div>
    	</div>
    	<div class="firstRow">
    		<div>
    			<button class="0">0</button>
    		</div>
    		<div>
    			<button class="dot">.</button>
    		</div>
    		<div>
    			<button class="equal">=</button>
    		</div>
    		<div>
    			<button class="add">+</button>
    		</div>
    	</div>
    
    </div>
    
    </body>
    </html>

.....................................................................

答案
  • 在“按钮”中选择“xRow”并使类出现在它自己的行上:

-

.fourthRow, .thirdRow, .secondRow, .firstRow {
  display: flex;
}

以上是关于在类中选择一个类并使其具有自己的行的主要内容,如果未能解决你的问题,请参考以下文章

在类中调用类

如何以编程方式从控件自己的更改事件中更改选择框选择并使其在移动浏览器中工作

在类中重写函数的最紧凑和最简洁的方法是啥?

添加 SVG 元素并使其具有响应性

有没有办法打开相机并在屏幕上查看它并使其无法拍照或录制视频。

将保存在数据库 sqlite 中的列表视图中的一行发送到另一个列表视图,并使其与第一个列表视图中的行相同