Lets assume that the most real is current and voltage (if you go deeper, you may find that even an electron is an abstraction). The first step of abstraction is to consider that a +5V voltage represent a bit set to '1' and a 0V voltage represents a bit set to '0'. With a switch, you can decide the value of your wire.
With a second wire and a second switch, you get two binary values. The most interesting to do with them is to combine their binary values with operations such AND, OR and NOT. Two concepts are involved here: transistor for the real and logic for the abstraction. With that, you can perform addition, substraction and many other operations on your two binary inputs. You can add more wires to represent values other than '0' and '1'. Going this way, you obtain an ALU.
Now it's time to include time. If you want several results from your ALU, you have to provide input data one at a time, thus needing a clock and a control unit for sequencing operations. You also need memory for storing input values and results, and input and output devices for commanding and observing. Going this way, you obtain a Von Neuman Architecture, which is the basis of almost all computer architectures.
Next abstraction level is when you decide, with appropriate electronics, that this particular bit in memory will stimulate that particular pixel of your LCD display.