How can I create a table that only has a border on the inside in between rows?
I've tried doing:
.CSS file:
body {
margin-top:0;
}
a {
text-decoration:none;
}
a:hover {
text-decoration:underline;
}
h1 {
}
.class1 a {
display:block;
background-color:#EEEEEE;
color:#336666;
}
.class1...
I have a function that executes on every second.
I wish to add an if statment that if it is true then it will do nothing for the next 5 seconds.
How can I do this?
public void MyFunction()
if (statement is true)
{
do not run through function for 5 seconds
}
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.