I want to just select the First two input and not last two. so please help me out from this and give a brief example for the not select if possible
.converter .MainConversion input{
display: block;
margin: auto;
width: 30%;
font-size: 20px;
padding: 3px;
border: 0px;
font-family: Montserrat;
font-weight: 600;
border-radius: 20px;
margin-top: 10px;
margin-bottom: 30px;
text-align: center;
background-color: rgb(177, 177, 177);
}
<div class="converter">
<div class="MainConversion">
<div id="displayresult">
<h5 id="HeaderDisplay">Enter the Value</h5>
<p id="MistakeDisplay">Enter a width and height you want to convert for </p>
</div>
<label for="ScreenWidth">Screen Width</label>
<input type="text" name="ScreenWidth" id="ScreenWidth" placeholder="Enter the Width">
<label for="ScreenHeight">Screen Height</label>
<input type="text" name="ScreenHeight" id="ScreenHeight" placeholder="Enter the height">
<label for="PxtoVw" >Number of Vw units</label>
<input type="text" name="PxtoVw" id="PxtoVW" placeholder="Enter the Value">
<p id="PxtoVwResult"></p>
<label for="PxtoVh" >Number of Vh Units</label>
<input type="text" name="PxtoVh" id="PxtoVh" placeholder="Enter the Value">
<p id="PxtoVhResult"></p>
<button class="DeviceButton" onclick="Calculate()">Check</button>
<button class="DeviceButton" onclick="Clear()">Clear</button>
</div>
</div>