html标题右侧有徽标

时间:2017-10-24 08:45:30

标签: html css text-align

我正在尝试在右侧显示徽标,在中心标题旁边

我尝试了几种显示组合:内联和浮动,但似乎h1标题的居中属性在该组合中并不真正起作用。

请告诉我这是怎样的正确方法?例如,将徽标放入css?欢迎任何有关如何解决问题的提示

1 个答案:

答案 0 :(得分:1)

您可以尝试定位如下面的代码段。

library(purrr)

output_list <- vector("list", 100)

myfunc <- safely(function(x){

  fn <- function(theta) { sum ( 0.5*(xvec - theta[1])^2/theta[2] + 0.5* log(theta[2]) ) }
  optim(theta <- c(0,5), fn, hessian=TRUE,method = "L-BFGS-B",lower=c(0,0),control = list(trace=1))

  out

})

for(i in 1:100){


  output_list[[i]] <- myfunc(rnorm(1))

}

errors <- lapply(output_list, function(x) !is.null(x$error)) %>% unlist
header {
  position: relative;
  padding:0;  
  height: 80px;
  border: 1px solid;
}

h1 {
  text-align: center;
}

.logo-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;  
}