JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td id="portrait">
        <img id="prof_picture"></img>
    </td>
    </tr>
</table

CSS

#portrait{
 line-height: 0;
  width:120px;
  height:100px;
  top:20px;
  border: solid black 1px;
  margin: 0px;
  padding: 0px;
  cursor:pointer;
}

#prof_picture{
    width: inherit;
    height: inherit;
    border: none;
}

JavaScript

$("#prof_picture").attr('src',"http://placekitten.com/120/100");