My concept involves crafting a minimalist green button with no text or border, just a sleek green shape that would automatically match the size of col-md-12
from Bootstrap. While I've come across similar inquiries, my limited understanding is hindering me. Any assistance in clarifying this matter would be greatly appreciated.
<body>
<div class="col-md-12">
<button class="button" type="button" style="border:none; display:inline-block; color:green;"></button>
</div>
</body>
This is what I have attempted so far: within the body element, I placed a col-md-12
division as intended. Subsequently, I endeavored to generate a button embodying class attributes such as class=button
, type=button
, and styling for a simplistic green appearance using inline-block to overlay it on col-md-12
. Regrettably, the expected outcome did not materialize. Where might I be faltering?
I am adamant about avoiding explicit sizing specifications in order to seamlessly integrate the button across the entirety of col-md-12. Could someone kindly point out the misunderstanding on my end? Thank you.