<style>
    input:read-only {
        background-color: silver;
    }
</style>
<fieldset>
    <legend>이메일 수정하기</legend>
    <p>
        <label for="user-id">아이디</label>
        <!-- 텍스트를 읽을 수는 있지만,편집은 할 수 없음 -->
        <input id="user-id" type="text" value="abc-id" readonly>
    </p>
    <p>
        <label for="user-email">이메일</label>
        <input id="user-email" type="email" value="me@exmaple.com">
    </p>
</fieldset>
실제 적용된 모습