Floor plan

In response to the question at http://stackoverflow.com/questions/12690104/adding-a-hoverstatus-to-small-parts-of-an-image/12691090

by helxsz

HTML

<div class="floorplan">
    <a class="room" href="#" id="room1018">
        1018
    </a>
    <a class="room" href="#" id="room1025">
        1025
    </a>
</div>

CSS

.floorplan,
.room {
    border: 1px solid #ee7538;
}

.floorplan {
    background: #ebecec;
    height: 300px;
    position: relative;
    width: 200px;
}

.room {
    background: #fff;
    color: #000;
    display: block;
    font-family: Impact, sans-serif;
    font-weight: bold;
    position: absolute;
    text-align: center;
    text-decoration: none;
}

.room:hover {
    background: #ee7538;
    color: #fff;
}

#room1018 {
    height: 50px;
    left: 20px;
    line-height: 50px;
    top: 20px;
    width: 100px;
}

#room1025 {
    height: 100px;
    left: 20px;
    line-height: 100px;
    top: 100px;
    width: 50px;
}