I want to target the first child of an element which is nested within and element with css
<div  class="message message-send">
  <div class="message-container">
    <div class="message-avatar">
      <div class="msg-avatar"></div>
      <div class="message-msg">
      <div class="msg-contentContainer">
        <div class="msg-text">
          <div class="msg-container">
            <p class="msg-msg msg-size">hello</p>
          </div>
        </div>
      </div>
    </div>
  </div>
</div>
css: tried
.message-send .msg-text> *:first-child {
  border-top-right-radius:.999em;
}
I want to target '.msg-text' as the first child of '.message-send' i tried
but did not work
 
    